import * as React from "react"; import { Switch } from "@headlessui/react"; // helpers import { cn } from "../../helpers"; interface IToggleSwitchProps { value: boolean; onChange: (value: boolean) => void; label?: string; size?: "sm" | "md" | "lg"; disabled?: boolean; className?: string; } const ToggleSwitch: React.FC = (props) => { const { value, onChange, label, size = "sm", disabled, className } = props; return ( {label} ); }; ToggleSwitch.displayName = "plane-ui-toggle-switch"; export { ToggleSwitch };