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

11 lines
218 B
TypeScript

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