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.
35 lines (34 loc) • 917 B
JavaScript
export default function () {
return {
'hook-breadcrumb': {
'@apply text-sm': {}
},
// 'hook-breadcrumb-solid': {},
'hook-item': {
display: null,
alignItems: null,
fontSize: null,
fontWeight: null,
textDecoration: null,
color: null,
'@apply inline-flex items-center text-muted-foreground': {}
},
'hook-item-hover': {
'@apply text-foreground': {}
},
'hook-item-disabled': {
'@apply opacity-50': {}
},
'hook-item-active': {
'@apply font-medium text-foreground': {}
},
'hook-divider': {
margin: null,
color: null,
'@apply ml-2 mr-3 text-muted-foreground': {}
},
'hook-misc': {
'.uk-breadcrumb-solid': null
}
};
}