react-icons/bs#BsPerson TypeScript Examples

The following examples show how to use react-icons/bs#BsPerson. 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: Header.tsx    From twitch-clone with MIT License 6 votes vote down vote up
Header: React.FC = () => {
  return (
    <Container>
      <LeftMenu>
        <img src="/favicon.svg" alt="Twitch Clone" width="32" height="32" />
        <ul>
          <li>
            <a href="#">Browse</a>
          </li>
          <li>...</li>
        </ul>
      </LeftMenu>
      <MiddleMenu>
        <div>
          <input id="search" type="text" placeholder="Search" />
          <label aria-label="search" htmlFor="search">
            Search
          </label>
          <FaSearch size={16} />
        </div>
      </MiddleMenu>
      <RightMenu>
        <CgCrown size={24} />
        <Button buttonType="secondary">Log In</Button>
        <Button buttonType="primary">Sign Up</Button>
        <BsPerson size={24} color="#fafafa" />
      </RightMenu>
    </Container>
  );
}