UNPKG

@ant-design/react-native

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

13 lines (12 loc) 434 B
import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { SegmentedControlPropsType } from './PropsType'; export interface SegmentedControlProps extends SegmentedControlPropsType { style?: StyleProp<ViewStyle>; } export default class SegmentedControl extends React.Component<SegmentedControlProps, any> { static defaultProps: { selectedIndex: number; }; render(): JSX.Element; }