UNPKG

alouette

Version:

A modern, customizable design system built on top of NativeWind v5 with configurable defaults

12 lines 440 B
import { type ReactNode } from "react"; import { type AccentScopeProps } from "../containers/AccentScope"; export interface SwitchProps { accent?: AccentScopeProps["accent"]; checked?: boolean; disabled?: boolean; onValueChange?: (value: boolean) => void; "aria-labelledby"?: string; testID?: string; } export declare function Switch({ accent, ...rest }: SwitchProps): ReactNode; //# sourceMappingURL=Switch.d.ts.map