mirror of
https://github.com/prymitive/karma
synced 2026-05-11 03:46:48 +00:00
19 lines
487 B
JavaScript
19 lines
487 B
JavaScript
import React from "react";
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
import { faMugHot } from "@fortawesome/free-solid-svg-icons/faMugHot";
|
|
|
|
import { MountFade } from "Components/Animations/MountFade";
|
|
|
|
import "./index.scss";
|
|
|
|
const EmptyGrid = () => (
|
|
<h1 className="display-1 text-placeholder screen-center">
|
|
<MountFade in={true}>
|
|
<FontAwesomeIcon icon={faMugHot} style={{ fontSize: "14rem" }} />
|
|
</MountFade>
|
|
</h1>
|
|
);
|
|
|
|
export { EmptyGrid };
|