nes-ui-react
Version:
A design system that paints the web in 8 bits.
7 lines (6 loc) • 321 B
TypeScript
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface SeparatorProps extends StyleProps, IdProps {
horizontal?: boolean;
}
export declare const Separator: ({ id, style, className, horizontal }: SeparatorProps) => import("react/jsx-runtime").JSX.Element;