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) • 829 B
TypeScript
export default function (): {
'hook-accordion': {
'@apply text-sm': {};
};
'hook-item': {
marginTop: null;
};
'hook-title': {
fontSize: null;
lineHeight: null;
color: null;
'@apply items-start px-0 py-4 font-medium text-foreground': {};
};
'hook-title-hover': {
color: null;
textDecoration: null;
'@apply underline': {};
};
'hook-content': {
marginTop: null;
'@apply pb-4 text-foreground': {};
};
'hook-misc': {
'.uk-accordion > li': {
'@apply border-b border-border': {};
};
'.uk-accordion-icon': {
'@apply text-muted-foreground': {};
};
'.uk-accordion-content > :last-child': {
marginBottom: null;
};
};
};