Files
web/apps/scandic-web/components/TempDesignSystem/Form/Country/country.ts

15 lines
372 B
TypeScript

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