-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui): small improvements on footer's logo
- Loading branch information
Showing
4 changed files
with
63 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { useThemeStore } from '~/stores/theme-store' | ||
import { logo } from './styles' | ||
|
||
export function Logo() { | ||
const theme = useThemeStore(set => set.theme) | ||
|
||
return ( | ||
<svg | ||
width="800" | ||
height="800" | ||
viewBox="0 0 800 800" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
className="h-full w-full" | ||
> | ||
<rect | ||
width="800" | ||
height="800" | ||
rx="196" | ||
fill="currentColor" | ||
className={logo.rect({ theme })} | ||
/> | ||
<path | ||
d="M213 656V297.215C213 248.844 274.843 228.663 303.375 267.722L496.625 532.278C525.157 571.337 587 551.156 587 502.785V144" | ||
stroke="currentColor" | ||
strokeWidth="130" | ||
strokeLinecap="round" | ||
className={logo.path({ theme })} | ||
/> | ||
</svg> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters