react-icons/fa#FaGlobeAfrica TypeScript Examples

The following examples show how to use react-icons/fa#FaGlobeAfrica. 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: MapContainer.tsx    From meshtastic-web with GNU General Public License v3.0 5 votes vote down vote up
MapContainer = (): JSX.Element => {
  const dispatch = useAppDispatch();
  const darkMode = useAppSelector((state) => state.app.darkMode);

  const mapState = useAppSelector((state) => state.map);

  const { ref } = useMapbox();

  const ChangeMapStyle = useCallback(
    (styleName: string, style: MapStyle) => {
      dispatch(
        setMapStyle(
          mapState.style === styleName
            ? darkMode
              ? 'Dark'
              : 'Light'
            : style.title,
        ),
      );
    },
    [dispatch, darkMode, mapState.style],
  );

  return (
    <div
      className="relative flex h-full w-full"
      onContextMenu={(e): void => {
        e.stopPropagation();
      }}
    >
      <div className="absolute right-0 z-10 m-4 space-y-2 rounded-md border border-gray-400 bg-white p-2 shadow-md dark:border-gray-600 dark:bg-primaryDark">
        <IconButton
          active={mapState.style === 'Satellite'}
          onClick={(): void => {
            ChangeMapStyle('Satellite', MapStyles.Satellite);
          }}
          icon={<FaGlobeAfrica />}
        />

        <div
          className={`-m-1 space-y-2 rounded-md border-gray-400 p-1 dark:border-gray-600 ${
            mapState.style === 'Outdoors' ? 'border' : ''
          }`}
        >
          <IconButton
            active={mapState.style === 'Outdoors'}
            onClick={(): void => {
              ChangeMapStyle('Outdoors', MapStyles.Outdoors);
            }}
            icon={<FaDirections />}
          />
          {mapState.style === 'Outdoors' && (
            <IconButton
              active={mapState.hillShade}
              onClick={(): void => {
                dispatch(setHillShade(!mapState.hillShade));
              }}
              icon={<MdWbShade />}
            />
          )}
        </div>

        <hr className="text-gray-400 dark:text-gray-200" />
        <IconButton
          active={mapState.exaggeration}
          onClick={(): void => {
            dispatch(setExaggeration(!mapState.exaggeration));
          }}
          icon={<FaMountain />}
        />
        <IconButton icon={<MdFullscreen />} />
        <IconButton icon={<MdRadar />} />
      </div>
      <div className="h-full w-full flex-grow" ref={ref} />
    </div>
  );
}