props.d.ts 603 B

123456789101112131415161718192021222324
  1. import { IBaseProps } from '../_util/base';
  2. /**
  3. * @description 容器,依据最佳实践统一了元素的间距、圆角,并可根据具体情况选择使用 title 内容。
  4. */
  5. export interface IContainerProps extends IBaseProps {
  6. /**
  7. * @description 标题
  8. */
  9. title?: string;
  10. /**
  11. * @description 标题是否在容器内
  12. * @default true
  13. */
  14. headerInBox?: boolean;
  15. /**
  16. * @description 类名
  17. */
  18. className?: string;
  19. /**
  20. * @description 样式
  21. */
  22. style?: string;
  23. }
  24. export declare const ContainerDefaultProps: IContainerProps;