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

13 lines
260 B
TypeScript

import type { RegisterOptions } from "react-hook-form"
export type PhoneProps = {
ariaLabel?: string
className?: string
disabled?: boolean
label: string
name?: string
placeholder?: string
readOnly?: boolean
registerOptions?: RegisterOptions
}