UNPKG

prp-ui-components

Version:

Package for use components of Pratica Plataforms

7 lines (6 loc) 305 B
import * as React from 'react'; export interface ISearchInputProps extends React.ComponentPropsWithoutRef<'input'> { onChangeValues: (value: string) => void; normalize?: boolean; } export declare const SearchInput: ({ onChangeValues, normalize, ...rest }: ISearchInputProps) => React.JSX.Element;