react-icons/bi#BiExclude JavaScript Examples

The following examples show how to use react-icons/bi#BiExclude. 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: Menu.js    From fokus with GNU General Public License v3.0 6 votes vote down vote up
export function Menu() {
    return (
        <MenuContainer>
            <AppLogoContainer>
                <img src={logo} alt="logo" />
            </AppLogoContainer>
            <MenuOptions exact to="/">
                <MdDashboard data-tip="" data-for="dashboard" />
                <ReactTooltip id="dashboard" getContent={() => "Dashboard"} />
            </MenuOptions>

            <MenuOptions exact to="/notes">
                <BiNotepad data-tip="" data-for="notes" />
                <ReactTooltip id="notes" getContent={() => "Notes"} />
            </MenuOptions>

            <DummyMenuOptions>
                <BiExclude data-tip="" data-for="analytics" />
                <ReactTooltip id="analytics" getContent={() => "Coming Soon"} />
            </DummyMenuOptions>

            <MenuOptions exact to="/settings">
                <MdSettings data-tip="" data-for="settings" />
                <ReactTooltip id="settings" getContent={() => "Settings"} />
            </MenuOptions>

            <AppTextLogoContainer>
                <img src={namedLogoLight} alt="fokus" />
            </AppTextLogoContainer>
        </MenuContainer>
    );
}