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.
31 lines (30 loc) • 768 B
TypeScript
import type { OptionsType } from '../preset-types.js';
export default function (options?: OptionsType): {
'hook-icon-line': {
borderBottom: string;
'@apply border-border': {};
};
'hook-small': {
borderBottom: string;
'@apply border-border': {};
};
'hook-vertical': {
borderBottom: string;
'@apply border-border': {};
};
'hook-misc': {
'.uk-divider-icon': {
backgroundImage: string;
};
'.dark .uk-divider-icon': {
backgroundImage: string;
};
"[class*='uk-divider']": {
marginBottom: null;
height: string;
};
"* + [class*='uk-divider']": {
marginTop: null;
};
};
};