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

The following examples show how to use @fortawesome/free-solid-svg-icons#faRandom. 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: index.tsx    From bad-cards-game with GNU Affero General Public License v3.0 6 votes vote down vote up
library.add(
  faDotCircle,
  faCircle,
  faBars,
  faTimes,
  faInfoCircle,
  faTrophy,
  faShareSquare,
  faHeart,
  faInstagram,
  faTwitter,
  faGithub,
  faFacebook,
  faHandPointRight,
  faEdit,
  faSave,
  faCamera,
  faPlus,
  faMinus,
  faRandom,
);
Example #2
Source File: Filter.tsx    From cftracker with MIT License 5 votes vote down vote up
Filter = (props: PropsType) => {
  let lo = props.selected * props.perPage;
  let high = Math.min(props.length, lo + props.perPage);

  return (
    <div className="menu">
      <ul className="navbar w-100 pt-3 mb-0 p-0 container d-flex justify-content-between list-unstyled">
        <li className="nav-item col-6">
          <input
            className={"form-control mr-sm-2 " + props.theme.bgText}
            type="text"
            placeholder={props.searchPlaceHolder}
            name={props.searchName}
            autoComplete="on"
            value={props.search}
            onChange={(e) => {
              props.onSearch(e.target.value);
            }}
          />
        </li>
        <li className="nav-item text-secondary">
          Showing {high - lo} of {props.length}
        </li>
        <li className="nav-item">
          <div className="btn-group" role="group" aria-label="Basic example">
            <button
              type="button"
              className={"btn btn-transparent text-secondary"}
              onClick={() => {
                if (props.length > 0)
                  props.setRandom(getRandomInteger(0, props.length - 1));
              }}
              title={"Find Random " + props.name}>
              <FontAwesomeIcon icon={faRandom} />
            </button>
            <button
              type="button"
              className={"btn btn-transparent text-secondary"}
              title="Cancel Random"
              onClick={() => props.setRandom(-1)}>
              <FontAwesomeIcon icon={faRedo} />
            </button>
          </div>
        </li>
        <li className="nav-item">{props.children}</li>
      </ul>
    </div>
  );
}