nes-ui-react
Version:
A design system that paints the web in 8 bits.
9 lines (8 loc) • 449 B
TypeScript
/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export type ColType = '1-of-2' | '1-of-3' | '2-of-3' | '1-of-4' | '2-of-4' | '3-of-4';
export interface ColProps extends StyleProps, React.PropsWithChildren<any>, IdProps {
type: ColType;
}
export declare const Col: ({ children, style, type, className, id }: ColProps) => import("react/jsx-runtime").JSX.Element;