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.
32 lines (31 loc) • 751 B
TypeScript
export default function (): {
'hook-breadcrumb': {
'@apply text-sm': {};
};
'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;
};
};