UNPKG

mobile-more

Version:

基于 antd-mobile v5 扩展移动端 UI 组件

26 lines (25 loc) 886 B
import React from 'react'; import './index.less'; import { HTMLAttributeWithStyleVariable } from '../../types'; export interface BizWhiteSpaceProps extends HTMLAttributeWithStyleVariable<HTMLDivElement, '--size-base'> { /** * @description 填充背景。`boolean` 值表示是否填充默认背景色。`string` 值表示填充背景色。 * @default false */ fill?: string | boolean; /** * @description 尺寸。 * @default 'md' */ size?: 'xxl' | 'xl' | 'lg' | 'md' | 'sm' | false; } declare const BizWhiteSpace: React.FC<BizWhiteSpaceProps>; /** * @deprecated 即将废弃,请使用 `BizWhiteSpace` 替代。 */ export declare const WhiteSpace: React.FC<BizWhiteSpaceProps>; /** * @deprecated 即将废弃,请使用 `BizWhiteSpaceProps` 替代。 */ export type WhiteSpaceProps = BizWhiteSpaceProps; export default BizWhiteSpace;