diff --git a/frontend/src/components/ui/index.ts b/frontend/src/components/ui/index.ts deleted file mode 100644 index ffb4c1b..0000000 --- a/frontend/src/components/ui/index.ts +++ /dev/null @@ -1,9 +0,0 @@ -export { Button, buttonVariants } from './button' -export { Card, CardHeader, CardTitle, CardContent, CardFooter } from './card' -export { Badge, badgeVariants } from './badge' -export { Input } from './input' -export { Select } from './select' -export { Label } from './label' -export { Switch } from './switch' -export { Textarea } from './textarea' -export { ToastContainer, toast, dismissToast } from './toast' \ No newline at end of file diff --git a/frontend/src/components/ui/input.tsx b/frontend/src/components/ui/input.tsx deleted file mode 100644 index b6f3d33..0000000 --- a/frontend/src/components/ui/input.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import * as React from 'react' -import { cn } from '@/lib/utils' - -export interface InputProps extends React.InputHTMLAttributes { - error?: boolean -} - -const Input = React.forwardRef( - ({ className, type, error, ...props }, ref) => { - return ( - - ) - } -) -Input.displayName = 'Input' - -export { Input } \ No newline at end of file diff --git a/frontend/src/components/ui/label.tsx b/frontend/src/components/ui/label.tsx deleted file mode 100644 index 6dfd317..0000000 --- a/frontend/src/components/ui/label.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import * as React from 'react' -import { cn } from '@/lib/utils' - -export interface LabelProps extends React.LabelHTMLAttributes { - required?: boolean -} - -const Label = React.forwardRef( - ({ className, required, children, ...props }, ref) => { - return ( - - ) - } -) -Label.displayName = 'Label' - -export { Label } \ No newline at end of file diff --git a/frontend/src/components/ui/select.tsx b/frontend/src/components/ui/select.tsx deleted file mode 100644 index fffd547..0000000 --- a/frontend/src/components/ui/select.tsx +++ /dev/null @@ -1,28 +0,0 @@ -import * as React from 'react' -import { cn } from '@/lib/utils' - -export interface SelectProps extends React.SelectHTMLAttributes {} - -const Select = React.forwardRef( - ({ className, ...props }, ref) => { - return ( -