UNPKG

@extclp/vexip-ui

Version:

A Vue 3 UI library, Highly customizability, full TypeScript, performance pretty good

17 lines (16 loc) 813 B
import { ExtractPropTypes, PropType } from 'vue'; import { ConfigurableProps } from '@vexip-ui/config'; export declare const spaceProps: { inherit: PropType<boolean>; vertical: PropType<boolean>; inline: PropType<boolean>; tag: PropType<string>; align: PropType<"center" | "start" | "end" | "stretch" | "baseline">; justify: PropType<"center" | "start" | "end" | "space-around" | "space-between" | "space-evenly">; noWrap: PropType<boolean>; size: PropType<number | "default" | "small" | "large" | [number, number]>; itemStyle: PropType<string | import('vue').CSSProperties | (string | import('vue').CSSProperties)[]>; gapDisabled: PropType<boolean>; }; export type SpaceProps = ExtractPropTypes<typeof spaceProps>; export type SpaceCProps = ConfigurableProps<SpaceProps>;