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.
28 lines (27 loc) • 869 B
TypeScript
export default function (): {
'hook-close': {
top: null;
right: null;
'@apply right-1 top-1 p-1 text-foreground/50': {};
};
'hook-message': {
padding: null;
backgroundColor: null;
color: null;
fontSize: null;
lineHeight: null;
'@apply rounded-md border border-border bg-background p-4 pr-6 text-sm text-foreground shadow-lg': {};
};
'hook-danger': {
color: null;
'@apply border-destructive bg-destructive text-destructive-foreground': {};
};
'hook-misc': {
'.uk-notification-message-primary': null;
'.uk-notification-message-success': null;
'.uk-notification-message-warning': null;
'.uk-notification-message-danger .uk-notification-close': {
'@apply text-destructive-foreground/50': {};
};
};
};