UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

10 lines (9 loc) 289 B
import * as React from 'react'; import './TextFilter.css'; export declare type TextFilterProps = { label?: string; placeholder?: string; value: string; onChange: (newValue: string) => void; }; export declare const TextFilter: (props: TextFilterProps) => React.JSX.Element;