checked:bg-secondary border-secondary w-5 h-5 rounded-md">
Inclusive by design with built-in WAI-ARIA support, ensuring applications work for everyone regardless of ability or assistive technology.
Leverage the power and flexibility of the latest Tailwind framework with zero configuration, offering unmatched styling efficiency.
Type-safe, maintainable code that scales effortlessly with comprehensive type definitions and intelligent autocomplete.
Smooth, purposeful animations that enhance user experience without sacrificing performance, creating more engaging interfaces.
Optimized for next-generation React architecture with full support for server components, reducing client-side JavaScript and improving performance.
Modern, polished layouts with consistent visual language and thoughtful interactions that adapt seamlessly to your branding.
Get Traken UI into your project with a single command. No hassle, just power.
npm i @traken-ui/react
Minimal setup, maximum flexibility, customize your design system with ease. Just plug in and you're ready to build.
// In your main app file (e.g., App.jsx, _app.js, etc.)
@import '@traken-ui/react/dist/traken-theme.css';
@import '@traken-ui/react/dist/esm/index.css';
Copy, paste, and you're live. Use production-ready components in seconds. No setup friction, just clean code that works. Build faster without reinventing the wheel.
import { Button } from '@traken-ui/react';
export default function App() {
return (
<div>
<Button color='primary' size='md' rounded='sm' variant='solid'> Solid Button </Button>
</div>
);
}