@ant-design/icons#FilterTwoTone JavaScript Examples

The following examples show how to use @ant-design/icons#FilterTwoTone. 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: search_filters_popover.js    From art-dashboard-ui with Apache License 2.0 6 votes vote down vote up
render() {

        return (
                <Popover content={this.getPopoverContent()} title="Applied Filters" placement="leftBottom" className="right"
                onClick={this.props.handleFilterBuildParamsButton}>
                    <Button
                        size="medium"
                        className="right"
                        style={{
                            marginBottom: "20px",
                            background: "#316DC1",
                            color: "white"}}

                        onClick={this.props.handleFilterBuildParamsButton}
                        icon={<FilterTwoTone/>}>Advanced Filters
                    </Button>
                    <Button/>
                </Popover>
        );
    }