import { DetailedHTMLProps, HTMLAttributes } from "react"; import { twMerge } from "tailwind-merge"; export type TWUI_TOGGLE_PROPS = DetailedHTMLProps< HTMLAttributes, HTMLDivElement > & { active?: boolean; circleProps?: DetailedHTMLProps< HTMLAttributes, HTMLDivElement >; }; /** * # Toggle Component * @className_wrapper twui-toggle-wrapper * @className_circle twui-toggle-circle */ export default function Toggle({ circleProps, active, ...props }: TWUI_TOGGLE_PROPS) { return (
); }