diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx index 4e4dabd..20e874b 100644 --- a/src/components/ui/button.tsx +++ b/src/components/ui/button.tsx @@ -1,17 +1 @@ import styles from '@styles/m3-scss/button.module.scss'; - -interface ButtonProps { - children: React.ReactNode; - className?: string; - onClick?: () => void; -} - -function Button({ children, className, onClick }: ButtonProps) { - return ( - - ); -} - -export default Button; diff --git a/src/components/ui/hover-card.tsx b/src/components/ui/hover-card.tsx index 9b1cace..1624947 100644 --- a/src/components/ui/hover-card.tsx +++ b/src/components/ui/hover-card.tsx @@ -1,4 +1 @@ -import { cn } from "@/lib/utils" import styles from '@styles/m3-scss/hover-card.module.scss'; - -// rest of the code remains the same diff --git a/src/components/ui/sheet.tsx b/src/components/ui/sheet.tsx index 47b759c..e831ba7 100644 --- a/src/components/ui/sheet.tsx +++ b/src/components/ui/sheet.tsx @@ -1,4 +1 @@ -import { cn } from "@/lib/utils" import styles from '@styles/m3-scss/sheet.module.scss'; - -// rest of the code remains the same