UNPKG

@cbinsights/fds

Version:
8 lines (7 loc) 250 B
export declare const VALID_SIZES: readonly ["xs", "s", "m"]; export declare type Size = typeof VALID_SIZES[number]; export interface Props { size?: Size; } declare const Loading: ({ size, ...rest }: Props) => JSX.Element; export default Loading;