@fortawesome/free-solid-svg-icons#faBell TypeScript Examples

The following examples show how to use @fortawesome/free-solid-svg-icons#faBell. 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: IconLibrary.ts    From react-memory-game with MIT License 6 votes vote down vote up
library.add(
  faChevronLeft,
  faPlay,
  faPause,
  faUndo,
  faClock,
  faQuestionCircle,
  faTimes,
  faPalette,

  // Icons for the game
  faPoo,
  faAnchor,
  faMoon,
  faAppleAlt,
  faBell,
  faBible,
  faBomb,
  faBone,
  faCar,
  faCat,
  faChess,
  faSkull,
  faFeatherAlt,
  faFire,
  faHeart,
  faMusic,
)
Example #2
Source File: index.tsx    From pPhone2 with MIT License 6 votes vote down vote up
settingsDataList: ISettingsProps[] = [
    { id: 1, title: 'Mode Avion', img: faPlaneDeparture, imgType: 'fontAwesome-icon1', imgColor: '#fff', backround: '#f09a37', checkbox: true },
    { id: 2, title: 'Wifi', img: faWifi, imgType: 'fontAwesome-icon1', imgColor: '#fff', backround: '#3478f6 ', /*rightLabel: "test" */ },
    { id: 3, title: 'Bluetooth', img: faBluetooth, imgType: 'fontAwesome-icon2', imgColor: '#fff', backround: '#3478f6 '  },
    { id: 4, title: 'Cartes SIM', img: faSimCard, imgType: 'fontAwesome-icon4', imgColor: '#fff', backround: '#65c466'  },

    { id: 0, alt: true },
    { id: 5, title: 'Notifications', img: faBell, imgType: 'fontAwesome-icon2', imgColor: '#fff', backround: '#d70015'  },
    { id: 6, title: 'Sons & Vibrations', img: faVolumeUp, imgType: 'fontAwesome-icon3', imgColor: '#fff', backround: '#d70015'  },
    { id: 7, title: 'Fond d\'ecran', img: faPalette, imgType: 'fontAwesome-icon3', imgColor: '#fff', backround: '#70d7ff'  },
    { id: 8, title: 'Mode Nuit', img: faMoon, imgType: 'fontAwesome-icon3', imgColor: '#fff', backround: '#5756ce'  },
    { id: 9, title: 'Theme', img: faBrush, imgType: 'fontAwesome-icon4', imgColor: '#fff', backround: '#8944ab'  },

]
Example #3
Source File: index.tsx    From MagicUI with Apache License 2.0 6 votes vote down vote up
ToolBar: React.FC = (props) => {
  const user = useSelector((state: IStoreState) => state.user);
  const handleAvatarClick = () => {
    Bridge.open(WidgetType.USER, user);
  };

  return (
    <div className={style.header_navigation}>
      <div className={style.right_content}>
        <div className={style.tools_bar}>
          <button className={style.help_btn} onClick={() => history.push(Routers.HELP)}>
            <FontAwesomeIcon icon={faInfoCircle}/>
          </button>
          <button className={style.todo_btn}>
            <FontAwesomeIcon icon={faCalendarCheck}/>
          </button>
          <button className={style.msg_btn}>
            <FontAwesomeIcon icon={faBell}/>
          </button>
          <button className={style.chart_btn}>
            <FontAwesomeIcon icon={faChartBar}/>
          </button>
        </div>
        <div className={style.avatar_wrapper}>
          <Avatar src={user.avatar as string} onClick={handleAvatarClick}/>
        </div>
      </div>
    </div>
  );
}
Example #4
Source File: fa-library.ts    From eth2stats-dashboard with MIT License 5 votes vote down vote up
library.add(faBell, faChevronDown, faTimes, faArrowRight, faCheck, faPlusCircle,
    faExclamationCircle, faHeart, faCodeBranch, faMap, faList, faCircle,
    faDotCircle,
    faCheckCircle, faNetworkWired, faUsers, faCube, faSortUp, faSortDown,
    faEllipsisV, faSync, faMicrochip, faCheckDouble, faLaptopCode);