franken-ui
Version:
Franken UI is an HTML-first, open-source library of UI components based on the utility-first Tailwind CSS with UIkit 3 compatibility. The design is based on shadcn/ui ported to be framework-agnostic.
25 lines (24 loc) • 756 B
JavaScript
export default function () {
return {
'hook-slidenav': {
padding: null,
color: null,
transition: null,
'@apply inline-flex h-9 w-9 items-center justify-center rounded-full border border-input shadow-sm bg-background focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring': {}
},
'hook-hover': {
color: null,
'@apply bg-accent text-accent-foreground': {}
},
'hook-active': {
color: null,
'@apply bg-accent text-accent-foreground': {}
},
'hook-large': null,
'hook-misc': {
'.uk-slidenav svg': {
'@apply h-4 w-4': {}
}
}
};
}