UNPKG

nes-ui-react

Version:

A design system that paints the web in 8 bits.

8 lines (7 loc) 377 B
import { IdProps } from "./interface/IdProps"; import { StyleProps } from "./interface/StyleProps"; export interface HrProps extends StyleProps, IdProps { height?: number | string; color?: 'primary' | 'success' | 'error' | 'warning' | 'disabled'; } export declare const Hr: ({ id, style, height, color, className }: HrProps) => import("react/jsx-runtime").JSX.Element;