A modern, type-safe and cross framework UI library
- Cross framework support
- Plain JS/TS
- React
- Vue
- Solid
- Zero-runtime CSS engine (PandaCSS, supports RSC)
- Lightweight
- TypeSafe
- Themable
- Variants
- Accessible
import { button } from 'taillight'
const button = `<button class="${button({
variant: 'primary',
})}">Click me</button>`
import { Button } from '@taillight-ui/react'
const button = <Button variant="primary">Click me</Button>
import { Button } from '@taillight-ui/solid'
const button = <Button variant="primary">Click me</Button>