interface DividerProps {
    children?: ReactNode;
    className?: string;
    dashed?: boolean;
    orientation?: "center" | "left" | "right";
    orientationMargin?: string | number;
    plain?: boolean;
    prefixCls?: string;
    rootClassName?: string;
    style?: CSSProperties;
    type?: "horizontal" | "vertical";
}

Properties

children?: ReactNode
className?: string
dashed?: boolean
orientation?: "center" | "left" | "right"
orientationMargin?: string | number
plain?: boolean
prefixCls?: string
rootClassName?: string
style?: CSSProperties
type?: "horizontal" | "vertical"

Generated using TypeDoc