UNPKG

@ant-design/react-native

Version:

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

8 lines (7 loc) 289 B
import { StyleProp, ViewStyle } from 'react-native'; import { SwitchPropsType } from './PropsType'; export interface AntmSwitchProps extends SwitchPropsType { style?: StyleProp<ViewStyle>; } declare const AntmSwitch: (props: AntmSwitchProps) => JSX.Element; export default AntmSwitch;