Files
web/components/TempDesignSystem/Form/Country/country.ts
2024-06-19 14:51:00 +02:00

12 lines
306 B
TypeScript

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