react-icons/md#MdComputer JavaScript Examples
The following examples show how to use
react-icons/md#MdComputer.
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: Hobby.js From portfolio-react with MIT License | 6 votes |
function hobbyIconCheck(iconName, size) {
if (iconName === 'FaPuzzlePiece')
return <FaPuzzlePiece color='#fff' size={size} />
else if (iconName === 'MdComputer')
return <MdComputer color='#fff' size={size} />
else if (iconName === 'FaDumbbell')
return <FaDumbbell color='#fff' size={size} />
else if (iconName === 'MdCardTravel')
return <MdCardTravel color='#fff' size={size} />
else if (iconName === 'FaNetworkWired')
return <FaNetworkWired color='#fff' size={size} />
else if (iconName === 'FaGuitar') return <FaGuitar color='#fff' size={size} />
}
Example #2
Source File: NavBar.js From CS-Hut with MIT License | 5 votes |
function NavBar() {
const [NavBar, setNavBar] = useState(false);
const ChangeBackground = () => {
if (window.scrollY > 220) {
setNavBar(true);
} else {
setNavBar(false);
}
};
window.addEventListener("scroll", ChangeBackground);
return (
<IconContext.Provider
value={{ color: "white", size: "2rem", padding: "20px" }}
>
<div>
<Navbar
fixed="top"
expand="lg"
variant="dark"
className={NavBar ? "navBar active" : "navBar"}
>
<Navbar.Brand href="/">
<img src={NavLogo} alt="" className="nav-img" />
CS Hut
</Navbar.Brand>
<Navbar.Toggle
aria-controls="basic-navbar-nav"
className="custom-toggler"
/>
<Navbar.Collapse id="basic-navbar-nav">
<Nav className="ml-auto">
<FaHome />
<Nav.Link href="/">Home</Nav.Link>
<div className="borderbottom"></div>
<MdComputer />
<Nav.Link href="/Tags">Resources</Nav.Link>
<div className="borderbottom"></div>
<FaInfoCircle />
<Nav.Link>
<HashLink className="hash-link" to="/#ab">
About
</HashLink>
</Nav.Link>
<div className="borderbottom"></div>
<MdContactMail />
<Nav.Link href="/contactus">Contact</Nav.Link>
<div className="borderbottom"></div>
</Nav>
</Navbar.Collapse>
</Navbar>
</div>
</IconContext.Provider>
);
}