From 15e1efc0a126629e0dc9766f11f0757beae08dc0 Mon Sep 17 00:00:00 2001 From: Rodrigo Nader Date: Wed, 28 Jun 2023 11:35:26 -0300 Subject: [PATCH] feat: Add new stylesheet for Switch component Imported a new stylesheet for the Switch component to enhance its visual appearance. --- src/frontend/src/components/ui/switch.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/frontend/src/components/ui/switch.tsx b/src/frontend/src/components/ui/switch.tsx index 6ecf52307..c9b41cb90 100644 --- a/src/frontend/src/components/ui/switch.tsx +++ b/src/frontend/src/components/ui/switch.tsx @@ -4,8 +4,6 @@ import * as React from "react"; import * as SwitchPrimitives from "@radix-ui/react-switch"; import { cn } from "../../utils"; -import "./SwitchStyles.css"; // Import the new stylesheet - const Switch = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef