diff --git a/src/custom/docs/components/header/CodeCopy.tsx b/src/custom/docs/components/header/CodeCopy.tsx
index 713e2bc..25d5e0b 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/calendar.tsx b/src/shadcn/ui/calendar.tsx
index 5fdc4c2..e814911 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-background 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..798e4e7 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 (