import type { SwitchProps, SwitchThumbProps } from "tamagui";
import { Switch, useTheme } from "tamagui";
const MWSwitch = (props: SwitchProps) => {
const theme = useTheme();
return (
);
};
const MWSwitchThumb = (props: SwitchThumbProps) => {
return ;
};
MWSwitch.Thumb = MWSwitchThumb;
export { MWSwitch };