UNPKG

and-design-components-library

Version:

Library of reusable React components based on AND Digital design system.

12 lines (11 loc) 278 B
import { InputHTMLAttributes } from 'react'; export interface InputProps extends InputHTMLAttributes<HTMLInputElement> { /** * Wheather the input is disabled */ disabled?: boolean; /** * Placeholder text */ placeholder?: string; }