UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

9 lines (8 loc) 251 B
import './TextFilter.css'; export declare type TextFilterProps = { label?: string; placeholder?: string; value: string; onChange: (newValue: string) => void; }; export declare const TextFilter: (props: TextFilterProps) => JSX.Element;