-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,7 @@ dist/ | |
# misc | ||
.DS_Store | ||
*.pem | ||
*.tool-versions | ||
|
||
# debug | ||
npm-debug.log* | ||
|
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 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,6 @@ | ||
export const Logo = ({ className = "", fill = "currentColor" }: { className?: string, fill?: string }) => ( | ||
<svg viewBox="0 0 500 800" fill="red" xmlns="http://www.w3.org/2000/svg" className={className}> | ||
<path d="M0 413V325L500 519V607L0 800V712L402.081 562.974L0 413Z" fill={fill}/> | ||
<path d="M500 88L97.9186 237.974L500 387V475L0 282V194L500 0V88Z" fill={fill}/> | ||
</svg> | ||
); |