11 lines
218 B
TypeScript
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
|
|
}
|