diff --git a/web/src/components/ui/toggle-button.tsx b/web/src/components/ui/toggle-button.tsx new file mode 100644 index 000000000..bd1f91f26 --- /dev/null +++ b/web/src/components/ui/toggle-button.tsx @@ -0,0 +1,29 @@ +import { cn } from "@/lib/utils"; + +export default function ToggleButton({ + active, + onClick, + children, + disabled, +}: { + active: boolean; + onClick: () => void; + children: React.ReactNode; + disabled: boolean; +}) { + return ( + + ); +}