diff --git a/src/components/ui/button.tsx b/src/components/ui/button.tsx index 4106711..03834c0 100644 --- a/src/components/ui/button.tsx +++ b/src/components/ui/button.tsx @@ -53,4 +53,4 @@ const Button = React.forwardRef( ) Button.displayName = "Button" -export { Button, buttonVariants } +export { Button } diff --git a/src/components/ui/input.tsx b/src/components/ui/input.tsx index 7b9d75c..13da622 100644 --- a/src/components/ui/input.tsx +++ b/src/components/ui/input.tsx @@ -2,10 +2,7 @@ import * as React from "react" import { cn } from "../../lib/utils" -export interface InputProps - extends React.InputHTMLAttributes {} - -const Input = React.forwardRef( +const Input = React.forwardRef>( ({ className, type, ...props }, ref) => { return (