@devrue/rn-select
Version:
Custom typescript only select component for react native
12 lines • 438 B
TypeScript
/// <reference types="react" />
import type { PressableProps } from 'react-native';
interface Props extends PressableProps {
size?: 'xs' | 'sm' | 'md' | 'lg';
checked?: boolean;
inactiveColor?: string;
activeColor?: string;
checkColor?: string;
}
export default function Checkbox({ size, checked, inactiveColor, activeColor, checkColor, ...rest }: Props): JSX.Element;
export {};
//# sourceMappingURL=Checkbox.d.ts.map