mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +00:00
14 lines
No EOL
368 B
TypeScript
14 lines
No EOL
368 B
TypeScript
import { faBrush } from "@fortawesome/free-solid-svg-icons"
|
|
import { useTranslation } from "next-i18next"
|
|
import { FestaIcon } from "./extensions/FestaIcon"
|
|
|
|
|
|
export function WorkInProgress() {
|
|
const {t} = useTranslation()
|
|
|
|
return (
|
|
<div className="work-in-progress">
|
|
<FestaIcon icon={faBrush}/> {t("workInProgress")}
|
|
</div>
|
|
)
|
|
} |