Files
web/components/TempDesignSystem/Form/Country/country.ts
2024-10-07 08:12:07 +02:00

14 lines
348 B
TypeScript

import type { RegisterOptions } from "react-hook-form"
export type CountryProps = {
className?: string
label: string
name?: string
placeholder?: string
readOnly?: boolean
registerOptions?: RegisterOptions
}
export type CountryPortalContainer = HTMLDivElement | undefined
export type CountryPortalContainerArgs = HTMLDivElement | null