fictoan-react
Version:
A full-featured, designer-friendly, yet performant framework with plain-English props and focus on rapid iteration.
12 lines (11 loc) • 610 B
TypeScript
import React from "react";
import { CommonAndHTMLProps } from '../Element/constants';
export interface DividerCustomProps {
kind?: "primary" | "secondary" | "tertiary";
height?: string;
label?: string;
}
export type DividerElementType = HTMLHRElement;
export type DividerProps = Omit<CommonAndHTMLProps<DividerElementType>, keyof DividerCustomProps> & DividerCustomProps;
export declare const Divider: React.ForwardRefExoticComponent<Omit<CommonAndHTMLProps<HTMLHRElement>, keyof DividerCustomProps> & DividerCustomProps & React.RefAttributes<HTMLHRElement>>;
//# sourceMappingURL=Divider.d.ts.map