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.
27 lines (26 loc) • 906 B
JavaScript
export default function () {
return {
'hook-badge': {
verticalAlign: null,
backgroundColor: null,
color: null,
fontSize: null,
lineHeight: null,
'@apply border border-border text-xs font-semibold text-foreground shadow': {}
},
'hook-hover': {
textDecoration: null
},
'hook-misc': {
'.uk-badge-primary': {
'@apply border-transparent bg-primary text-primary-foreground hover:bg-primary/80': {}
},
'.uk-badge-secondary': {
'@apply border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80': {}
},
'.uk-badge-danger': {
'@apply border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80': {}
}
}
};
}