-
Notifications
You must be signed in to change notification settings - Fork 2
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
53 changed files
with
1,628 additions
and
213 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 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
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,157 @@ | ||
import { html } from 'lit'; | ||
|
||
const identicon = html` | ||
<svg | ||
part="identicon" | ||
width="49" | ||
height="50" | ||
viewBox="0 0 49 50" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<circle | ||
cx="24.3483" | ||
cy="24.3483" | ||
r="23.9285" | ||
transform="matrix(-1 0 0 1 48.9502 0.469238)" | ||
fill="white" | ||
stroke="#CBCBCB" | ||
stroke-width="0.839598" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 28.0591 5.50659)" | ||
fill="#95A6FF" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 35.043 9.61597)" | ||
fill="#3B0D75" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 42.2329 13.7244)" | ||
fill="#00FFE0" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 13.8838 13.7244)" | ||
fill="#3F8AC0" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 21.0737 9.61597)" | ||
fill="#D900EC" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 28.0591 13.5188)" | ||
fill="#3F8AC0" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 35.043 17.6274)" | ||
fill="#FF1593" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 42.2329 21.7358)" | ||
fill="#95A6FF" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 13.8838 21.7358)" | ||
fill="#95A6FF" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 21.0737 17.6274)" | ||
fill="#3B0D75" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 28.0591 21.5303)" | ||
fill="#00FFE0" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 35.043 25.6396)" | ||
fill="#D900EC" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 42.2329 29.748)" | ||
fill="#3B0D75" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 13.8838 29.748)" | ||
fill="#3B0D75" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 21.0737 25.6396)" | ||
fill="#FF1593" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 28.0591 29.543)" | ||
fill="#FF1593" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 35.043 33.6511)" | ||
fill="#95A6FF" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 21.0737 33.6511)" | ||
fill="#95A6FF" | ||
/> | ||
<circle | ||
cx="3.28694" | ||
cy="3.28694" | ||
r="3.28694" | ||
transform="matrix(-1 0 0 1 28.0591 37.5547)" | ||
fill="#3F8AC0" | ||
/> | ||
</svg> | ||
`; | ||
|
||
export default identicon; |
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
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
Oops, something went wrong.