diff --git a/src/common/ui/components/atoms/avatar.tsx b/src/common/ui/components/atoms/avatar.tsx index 0ae6c674..b8ba3ba6 100644 --- a/src/common/ui/components/atoms/avatar.tsx +++ b/src/common/ui/components/atoms/avatar.tsx @@ -35,7 +35,7 @@ const AvatarFallback = React.forwardRef< (
), @@ -35,7 +35,7 @@ const CardDescription = React.forwardRef< HTMLParagraphElement, React.HTMLAttributes >(({ className, ...props }, ref) => ( -

+

)); CardDescription.displayName = "CardDescription"; diff --git a/src/common/ui/components/atoms/checkbox.tsx b/src/common/ui/components/atoms/checkbox.tsx index 9601f733..aedc626d 100644 --- a/src/common/ui/components/atoms/checkbox.tsx +++ b/src/common/ui/components/atoms/checkbox.tsx @@ -13,10 +13,10 @@ export const Checkbox = forwardRef< ref={ref} className={cn( "peer", - "h-4.5 w-4.5 shrink-0 rounded-sm border border-[var(--primary-600)] ring-offset-background", - "focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring", + "h-4.5 w-4.5 ring-offset-background shrink-0 rounded-sm border border-[var(--primary-600)]", + "focus-visible:ring-ring focus-visible:outline-none focus-visible:ring-2", "focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50", - "data-[state=checked]:bg-[var(--primary-600)] data-[state=checked]:text-primary-foreground", + "data-[state=checked]:text-primary-foreground data-[state=checked]:bg-[var(--primary-600)]", className, )} {...props} diff --git a/src/common/ui/components/atoms/input.tsx b/src/common/ui/components/atoms/input.tsx index 6421a115..0184c103 100644 --- a/src/common/ui/components/atoms/input.tsx +++ b/src/common/ui/components/atoms/input.tsx @@ -18,7 +18,7 @@ const Input = React.forwardRef( span]:line-clamp-1", + "bg-background ring-offset-background placeholder:text-muted-foreground focus:ring-ring flex h-10 w-full items-center justify-between gap-2 rounded-md py-2 pl-3 pr-2 text-sm shadow-[0px_0px_0px_1px_#00000038_inset,0px_-1px_1px_0px_#00000038_inset] focus:outline-none focus:ring-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1", className, )} {...props} @@ -76,7 +76,7 @@ const SelectContent = React.forwardRef< (({ className, ...props }, ref) => ( )); diff --git a/src/common/ui/components/atoms/separator.tsx b/src/common/ui/components/atoms/separator.tsx index b2777274..afb435c6 100644 --- a/src/common/ui/components/atoms/separator.tsx +++ b/src/common/ui/components/atoms/separator.tsx @@ -13,7 +13,7 @@ export const Separator = forwardRef< decorative={decorative} orientation={orientation} className={cn( - "shrink-0 bg-border", + "bg-border shrink-0", orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]", className, )} diff --git a/src/common/ui/components/atoms/skeleton.tsx b/src/common/ui/components/atoms/skeleton.tsx index 2a21e5d4..b1d74244 100644 --- a/src/common/ui/components/atoms/skeleton.tsx +++ b/src/common/ui/components/atoms/skeleton.tsx @@ -1,7 +1,7 @@ import { cn } from "../../utils"; function Skeleton({ className, ...props }: React.HTMLAttributes) { - return

; + return
; } export { Skeleton }; diff --git a/src/common/ui/components/atoms/switch.tsx b/src/common/ui/components/atoms/switch.tsx index 9bc3b7e0..41a5ebdb 100644 --- a/src/common/ui/components/atoms/switch.tsx +++ b/src/common/ui/components/atoms/switch.tsx @@ -10,7 +10,7 @@ const Switch = React.forwardRef< >(({ className, ...props }, ref) => ( diff --git a/src/common/ui/components/atoms/textarea.tsx b/src/common/ui/components/atoms/textarea.tsx index a19a3fae..cab23ee9 100644 --- a/src/common/ui/components/atoms/textarea.tsx +++ b/src/common/ui/components/atoms/textarea.tsx @@ -20,9 +20,9 @@ export const Textarea = forwardRef<