UNPKG

create-nova-expo-template

Version:

A template for creating a new React Native app using Expo and TypeScript, with a focus on performance and best practices.

9 lines (7 loc) 295 B
import type { AnimatedSwitchProps } from "@/components/vendor/reactICX/Switch/AnimatedSwitch.types"; export interface SwitchProps extends Partial<AnimatedSwitchProps> { value: boolean; onValueChange: (value: boolean) => void; label?: string; labelPosition?: "left" | "right"; }