UNPKG

@ant-design/react-native

Version:

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

9 lines (8 loc) 321 B
/// <reference types="react" /> 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;