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.
37 lines (36 loc) • 825 B
TypeScript
declare const _default: {
'.uk-spinner > *': {
animation: string;
};
'@keyframes uk-spinner-rotate': {
'0%': {
transform: string;
};
'100%': {
transform: string;
};
};
'.uk-spinner > * > *': {
strokeDasharray: string;
strokeDashoffset: string;
transformOrigin: string;
animation: string;
strokeWidth: string;
strokeLinecap: string;
};
'@keyframes uk-spinner-dash': {
'0%': {
strokeDashoffset: string;
};
'50%': {
strokeDashoffset: string;
transform: string;
};
'100%': {
strokeDashoffset: string;
transform: string;
};
};
'.uk-spinner': {};
};
export default _default;