Search Input
Search input in ui-react is documented through the Input component with type="search".
import { Input } from '@editora/ui-react';
<Input
type="search"
label="Search"
placeholder="Search issues"
clearable
debounce={200}
onDebouncedInput={(value) => console.log(value)}
/>