props.d.ts 505 B

1234567891011121314
  1. import { IBaseProps } from '../_util/base';
  2. export interface IDividerProps extends IBaseProps {
  3. lineColor: string;
  4. lineHeight: number;
  5. lineType: 'solid' | 'dashed' | 'dotted';
  6. lineWidth: number;
  7. text: string;
  8. textStyle: string;
  9. textClassName: string;
  10. textPosition: 'left' | 'center' | 'right';
  11. direction: 'horizontal' | 'vertical';
  12. }
  13. export declare const DividerDefaultProps: Partial<IDividerProps>;
  14. export declare const DividerFunctionalProps: Partial<IDividerProps>;