import * as React from "react"; import {ColorValue} from "react-native"; export type IProps = { // 数据 readonly list: string[] | React.ReactNode[] // 当前选中 readonly index: number // 选中 readonly setIndex: any // 文字大小 readonly size?: number // 颜色 readonly color?: ColorValue // 选中颜色 readonly selectColor?: ColorValue // 边距 readonly edge?: number // 左边距 readonly l?: number // 右边距 readonly r?: number // 下边距 readonly b?: number // 上边距 readonly t?: number // 上下边距 readonly pv?: number // 样式 readonly style?: any // 选中样式 readonly selectStyle?: any // 线条长度 readonly lineWidth?: number // 内容长度 readonly itemWidth?: number // 动画时间,默认 300 readonly animatedDuration?: number }