components#SearchInput JavaScript Examples
The following examples show how to use
components#SearchInput.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ProductsToolbar.js From git-insights with MIT License | 6 votes |
ProductsToolbar = props => {
const { className, ...rest } = props;
const classes = useStyles();
return (
<div
{...rest}
className={clsx(classes.root, className)}
>
<div className={classes.row}>
<span className={classes.spacer} />
<Button className={classes.importButton}>Import</Button>
<Button className={classes.exportButton}>Export</Button>
<Button
color="primary"
variant="contained"
>
Add product
</Button>
</div>
<div className={classes.row}>
<SearchInput
className={classes.searchInput}
placeholder="Search product"
/>
</div>
</div>
);
}
Example #2
Source File: UsersToolbar.js From git-insights with MIT License | 6 votes |
UsersToolbar = props => {
const { className, ...rest } = props;
const classes = useStyles();
return (
<div
{...rest}
className={clsx(classes.root, className)}
>
<div className={classes.row}>
<span className={classes.spacer} />
<Button className={classes.importButton}>Import</Button>
<Button className={classes.exportButton}>Export</Button>
<Button
color="primary"
variant="contained"
>
Add user
</Button>
</div>
<div className={classes.row}>
<SearchInput
className={classes.searchInput}
placeholder="Search user"
/>
</div>
</div>
);
}