ponchojs
Version:
Poncho
9 lines (8 loc) • 351 B
TypeScript
/// <reference types="react" />
export declare type Sizes = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | false;
export declare type ColProps = React.PropsWithChildren<Partial<{
size: Sizes;
offset: Sizes;
center?: boolean;
}>>;
export declare const Col: import("react").MemoExoticComponent<(props: ColProps) => JSX.Element>;