UNPKG

antd

Version:

An enterprise-class UI design language and React-based implementation

12 lines (11 loc) 417 B
import * as React from 'react'; export interface DividerProps { prefixCls?: string; type?: 'horizontal' | 'vertical'; orientation?: 'left' | 'right' | ''; className?: string; children?: React.ReactNode; dashed?: boolean; style?: React.CSSProperties; } export default function Divider({ prefixCls, type, orientation, className, children, dashed, ...restProps }: DividerProps): JSX.Element;