nes-ui-react
Version:
A design system that paints the web in 8 bits.
8 lines (7 loc) • 336 B
TypeScript
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface BrProps extends StyleProps, IdProps {
height?: number | string;
size?: 'small' | 'medium' | 'large';
}
export declare const Br: ({ height, size, style, id }: BrProps) => import("react/jsx-runtime").JSX.Element;