UNPKG

and-design-components-library

Version:

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

12 lines (11 loc) 255 B
import { ChangeEvent } from 'react'; export interface SearchBarWithIconProps { /** * Placeholder text */ placeholder?: string; /** * onChange event */ onChange?: (e: ChangeEvent<HTMLInputElement>) => void; }