Hotfix for app logo

This commit is contained in:
Keannu Bernasol 2023-02-15 00:34:27 +08:00
parent 1a1b334f7d
commit 4dc107f224

View file

@ -6,6 +6,7 @@ export interface props {
}
export default function AppLogo(props: props) {
return (
<div>
<svg
xmlns="http://www.w3.org/2000/svg"
className="icon icon-tabler icon-tabler-plant-2"
@ -25,5 +26,6 @@ export default function AppLogo(props: props) {
<path d="M12 4a9.7 9.7 0 0 1 2.99 7.5"></path>
<path d="M9.01 11.5a9.7 9.7 0 0 1 2.99 -7.5"></path>
</svg>
</div>
);
}