feat: Add new stylesheet for Switch component

Imported a new stylesheet for the Switch component to enhance its visual appearance.
This commit is contained in:
Rodrigo Nader 2023-06-28 11:35:26 -03:00
commit 15e1efc0a1

View file

@ -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<typeof SwitchPrimitives.Root>,
React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>