UNPKG

@extclp/vexip-ui

Version:

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

13 lines (12 loc) 495 B
import { ExtractPropTypes, PropType } from 'vue'; import { ConfigurableProps } from '@vexip-ui/config'; export declare const dividerProps: { inherit: PropType<boolean>; vertical: PropType<boolean>; textPosition: PropType<"center" | "right" | "left">; primary: PropType<boolean>; dashed: PropType<boolean>; margin: PropType<string | number>; }; export type DividerProps = ExtractPropTypes<typeof dividerProps>; export type DividerCProps = ConfigurableProps<DividerProps>;