21 lines
551 B
TypeScript
21 lines
551 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;
|
||
|
/**
|
||
|
* @since 5.20.0
|
||
|
* @default solid
|
||
|
*/
|
||
|
variant?: 'dashed' | 'dotted' | 'solid';
|
||
|
style?: React.CSSProperties;
|
||
|
plain?: boolean;
|
||
|
}
|
||
|
declare const Divider: React.FC<DividerProps>;
|
||
|
export default Divider;
|