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

The following examples show how to use @fortawesome/free-solid-svg-icons#faSpaceShuttle. 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: LandingHome.tsx    From argo-react with MIT License 6 votes vote down vote up
LandingHome = () => {
  const history = useHistory();

  return (
    <div className="landing-home">
      <div className="gradient-layer"></div>
      <Particle type="home" />
      <div className="landing-home-body">
        <h1>Permaweb deployment.</h1>
        <h1 className="heading-sec">
          {/* <Typist cursor={{ show: false }}>
            <Typist.Delay ms={500} />
            Simplified.
          </Typist> */}
        </h1>
        <button
          type="button"
          className="primary-button"
          onClick={(e) => history.push("/signup")}
        >
          <span className="button-icon">
            <FontAwesomeIcon icon={faSpaceShuttle} />
          </span>
          <span>Start Deploying</span>
        </button>
        <div className="alpha-text">Beta release now available</div>
      </div>
    </div>
  );
}