A tasteful flavour of shadcn-ui
pnpm add perun-ui
Import style.css
in the App root:
import 'perun-ui/style.css';
Then use the components:
import { Button } from 'perun-ui/ui';
export default function MyComponent() {
return <Button>Hello world</Button>;
}
Use lucide icons:
import { RocketIcon } from 'perun-ui/icons';
export default function MyComponent() {
return <RocketIcon />;
}