diff --git a/src/custom/docs/components/header/CodeCopy.tsx b/src/custom/docs/components/header/CodeCopy.tsx
index 713e2bc..3c67906 100644
--- a/src/custom/docs/components/header/CodeCopy.tsx
+++ b/src/custom/docs/components/header/CodeCopy.tsx
@@ -1,32 +1,40 @@
-'use client'
-import React from "react"
+"use client";
+import React from "react";
-import {Button, cn} from 'src'
-import { Check, Copy } from "lucide-react"
-export const CodeCopy = (props: {textToCopy: string, className?: string}) => {
+import { Button, cn } from "src";
+import { Check, Copy } from "lucide-react";
+export const CodeCopy = (props: { textToCopy: string; className?: string }) => {
+ const [copied, setHasCopied] = React.useState(false);
- const [copied, setHasCopied] = React.useState(false)
-
- return
-
{props.textToCopy}
+ return (
+
+ {props.textToCopy}
-
-
-}
+
+ );
+};
diff --git a/src/shadcn/ui/button.tsx b/src/shadcn/ui/button.tsx
index 706de48..08d2a24 100644
--- a/src/shadcn/ui/button.tsx
+++ b/src/shadcn/ui/button.tsx
@@ -14,7 +14,7 @@ const buttonVariants = cva(
destructive:
"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
outline:
- "border border-input bg-transparent shadow-sm hover:bg-accent hover:text-accent-foreground",
+ "border border-input bg-card shadow-sm hover:bg-accent hover:text-accent-foreground",
secondary:
"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
ghost: "hover:bg-accent hover:text-accent-foreground",
diff --git a/src/shadcn/ui/calendar.tsx b/src/shadcn/ui/calendar.tsx
index 5fdc4c2..ec22968 100644
--- a/src/shadcn/ui/calendar.tsx
+++ b/src/shadcn/ui/calendar.tsx
@@ -27,7 +27,7 @@ function Calendar({
nav: "space-x-1 flex items-center",
nav_button: cn(
buttonVariants({ variant: "outline" }),
- "h-7 w-7 bg-transparent p-0 opacity-50 hover:opacity-100"
+ "h-7 w-7 bg-card p-0 opacity-50 hover:opacity-100"
),
nav_button_previous: "absolute left-1",
nav_button_next: "absolute right-1",
@@ -60,8 +60,8 @@ function Calendar({
...classNames,
}}
components={{
- IconLeft: ({ ...props }) => ,
- IconRight: ({ ...props }) => ,
+ IconLeft: ({ ...props }) => ,
+ IconRight: ({ ...props }) => ,
}}
{...props}
/>
diff --git a/src/shadcn/ui/command.tsx b/src/shadcn/ui/command.tsx
index 78a4ace..50f1bab 100644
--- a/src/shadcn/ui/command.tsx
+++ b/src/shadcn/ui/command.tsx
@@ -28,8 +28,8 @@ interface CommandDialogProps extends DialogProps {}
const CommandDialog = ({ children, ...props }: CommandDialogProps) => {
return (