5 lines
115 B
TypeScript
5 lines
115 B
TypeScript
export interface AriaInputWithLabelProps
|
|
extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
label: string
|
|
}
|