UNPKG

tdesign-vue-next

Version:
10 lines (9 loc) 320 B
import { TNode, SizeEnum } from '../common'; export interface TdSpaceProps { align?: 'start' | 'end' | 'center' | 'baseline'; breakLine?: boolean; direction?: 'vertical' | 'horizontal'; separator?: string | TNode; size?: SpaceSize | SpaceSize[]; } export type SpaceSize = number | string | SizeEnum;