antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
16 lines (15 loc) • 447 B
TypeScript
import * as React from 'react';
export interface DividerProps {
prefixCls?: string;
type?: 'horizontal' | 'vertical';
orientation?: 'left' | 'right' | 'center';
orientationMargin?: string | number;
className?: string;
rootClassName?: string;
children?: React.ReactNode;
dashed?: boolean;
style?: React.CSSProperties;
plain?: boolean;
}
declare const Divider: React.FC<DividerProps>;
export default Divider;