rn-inkpad
Version:
<img src="https://res.cloudinary.com/fercloudinary/image/upload/v1715452841/packages/inkpad-banner_acl0xl.png" />
21 lines (19 loc) • 446 B
text/typescript
import {StyleProp, TextStyle} from 'react-native';
export type SwitchProps = {
isOn?: boolean;
backgrounColor?: string;
border?: boolean;
borderColor?: string;
borderWidth?: number;
fullWidth?: boolean;
justifyContent?:
| 'flex-start'
| 'flex-end'
| 'center'
| 'space-between'
| 'space-around'
| 'space-evenly';
text?: string;
textStyle?: StyleProp<TextStyle>;
onChange?: (value: boolean) => void;
};