welcome-ui
Version:
Customizable design system with react • styled-components • styled-system and ariakit.
11 lines (10 loc) • 426 B
TypeScript
import { CSSObject } from '@xstyled/styled-components';
import { CreateWuiProps } from '../System';
import { Size } from './theme';
export interface LoaderOptions {
color?: CSSObject['color'];
/** Predefined size xs, sm, md, lg or custom size */
size?: Size;
}
export type LoaderProps = CreateWuiProps<'div', LoaderOptions>;
export declare const Loader: import('../System').CreateWuiComponent<"div", LoaderProps>;