diff --git a/packages/reactant/src/components/Calendar/Calendar.tsx b/packages/reactant/src/components/Calendar/Calendar.tsx index 730ffb960..45e0c5428 100644 --- a/packages/reactant/src/components/Calendar/Calendar.tsx +++ b/packages/reactant/src/components/Calendar/Calendar.tsx @@ -3,6 +3,7 @@ import * as React from 'react'; import { DayPicker } from 'react-day-picker'; import { cn } from '~/lib/utils'; + import { buttonVariants } from '../Button'; export type CalendarProps = React.ComponentProps; diff --git a/packages/reactant/src/components/FileChooser/FileChooser.tsx b/packages/reactant/src/components/FileChooser/FileChooser.tsx index 787a33962..86f6937bf 100644 --- a/packages/reactant/src/components/FileChooser/FileChooser.tsx +++ b/packages/reactant/src/components/FileChooser/FileChooser.tsx @@ -1,6 +1,7 @@ import { ElementRef, forwardRef } from 'react'; import { cn } from '~/lib/utils'; + import { Input, InputProps } from '../Input'; export const FileChooser = forwardRef, InputProps>( diff --git a/packages/reactant/src/components/Form/Form.tsx b/packages/reactant/src/components/Form/Form.tsx index 430bb55b4..770b6ae44 100644 --- a/packages/reactant/src/components/Form/Form.tsx +++ b/packages/reactant/src/components/Form/Form.tsx @@ -2,6 +2,7 @@ import * as FormPrimitive from '@radix-ui/react-form'; import { ComponentPropsWithRef, ElementRef, forwardRef } from 'react'; import { cn } from '~/lib/utils'; + import { Label } from '../Label'; type ValidationPattern =