UNPKG

@ray-js/smart-ui-typings

Version:

@ray-js/smart-ui 智能小程序 UI 框架的类型声明文件

25 lines (24 loc) 454 B
import { VantComponent } from '../base'; export interface VantDividerProps { /** * 虚线 * * @default false */ dashed?: boolean; /** * 细线 * * @default false */ hairline?: boolean; /** * 文本位置 */ contentPosition?: 'left' | 'center' | 'right'; /** * 自定义样式 */ customStyle?: string; } export type VantDivider = VantComponent<VantDividerProps>;