Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIRE-276-fe-svg-30-개-가져오기 #29

Merged
merged 2 commits into from
Jul 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions src/assets/avatar/Avatar1.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
const Avatar1 = () => {
return (
<svg
viewBox="0 0 36 36"
fill="none"
role="img"
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
>
<title>Mahalia Jackson</title>
<mask
id="mask__beam"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="36"
height="36"
>
<rect width="36" height="36" rx="72" fill="#FFFFFF" />
</mask>
<g mask="url(#mask__beam)">
<rect width="36" height="36" fill="#ffad08" />
<rect
x="0"
y="0"
width="36"
height="36"
transform="translate(2 6) rotate(222 18 18) scale(1)"
fill="#73b06f"
rx="36"
/>
<g transform="translate(-6 1) rotate(-2 18 18)">
<path d="M13,19 a1,0.75 0 0,0 10,0" fill="#000000" />
<rect
x="12"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
<rect
x="22"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
</g>
</g>
</svg>
);
};

export default Avatar1;
58 changes: 58 additions & 0 deletions src/assets/avatar/Avatar10.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
const Avatar10 = () => {
return (
<svg
viewBox="0 0 36 36"
fill="none"
role="img"
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
>
<title>Abigail Adams</title>
<mask
id="mask__beam"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="36"
height="36"
>
<rect width="36" height="36" rx="72" fill="#FFFFFF" />
</mask>
<g mask="url(#mask__beam)">
<rect width="36" height="36" fill="#edd75a" />
<rect
x="0"
y="0"
width="36"
height="36"
transform="translate(7 7) rotate(273 18 18) scale(1)"
fill="#0c8f8f"
rx="6"
/>
<g transform="translate(3.5 3.5) rotate(-3 18 18)">
<path d="M13,19 a1,0.75 0 0,0 10,0" fill="#FFFFFF" />
<rect
x="11"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#FFFFFF"
/>
<rect
x="23"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#FFFFFF"
/>
</g>
</g>
</svg>
);
};
export default Avatar10;
64 changes: 64 additions & 0 deletions src/assets/avatar/Avatar11.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
const Avatar11 = () => {
return (
<svg
viewBox="0 0 36 36"
fill="none"
role="img"
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
>
<title>Maria Mitchell</title>
<mask
id="mask__beam"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="36"
height="36"
>
<rect width="36" height="36" rx="72" fill="#FFFFFF" />
</mask>
<g mask="url(#mask__beam)">
<rect width="36" height="36" fill="#9bd6df" />
<rect
x="0"
y="0"
width="36"
height="36"
transform="translate(8 -4) rotate(198 18 18) scale(1)"
fill="#bbf2c9"
rx="6"
/>
<g transform="translate(4 -1) rotate(-8 18 18)">
<path
d="M15 19c2 1 4 1 6 0"
stroke="#000000"
fill="none"
strokeLinecap="round"
/>
<rect
x="11"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
<rect
x="23"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
</g>
</g>
</svg>
);
};

export default Avatar11;
59 changes: 59 additions & 0 deletions src/assets/avatar/Avatar12.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
const Avatar12 = () => {
return (
<svg
viewBox="0 0 36 36"
fill="none"
role="img"
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
>
<title>Victoria Woodhull</title>
<mask
id="mask__beam"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="36"
height="36"
>
<rect width="36" height="36" rx="72" fill="#FFFFFF" />
</mask>
<g mask="url(#mask__beam)">
<rect width="36" height="36" fill="#73b06f" />
<rect
x="0"
y="0"
width="36"
height="36"
transform="translate(-5 9) rotate(189 18 18) scale(1)"
fill="#98d4f2"
rx="36"
/>
<g transform="translate(-5 4.5) rotate(9 18 18)">
<path d="M13,19 a1,0.75 0 0,0 10,0" fill="#000000" />
<rect
x="10"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
<rect
x="24"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
</g>
</g>
</svg>
);
};

export default Avatar12;
58 changes: 58 additions & 0 deletions src/assets/avatar/Avatar13.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
const Avatar13 = () => {
return (
<svg
viewBox="0 0 36 36"
fill="none"
role="img"
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
>
<title>Susan B</title>
<mask
id="mask__beam"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="36"
height="36"
>
<rect width="36" height="36" rx="72" fill="#FFFFFF" />
</mask>
<g mask="url(#mask__beam)">
<rect width="36" height="36" fill="#9bd6df" />
<rect
x="0"
y="0"
width="36"
height="36"
transform="translate(-4 8) rotate(88 18 18) scale(1.1)"
fill="#bbf2c9"
rx="36"
/>
<g transform="translate(0 4) rotate(8 18 18)">
<path d="M13,20 a1,0.75 0 0,0 10,0" fill="#000000" />
<rect
x="11"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
<rect
x="23"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
</g>
</g>
</svg>
);
};
export default Avatar13;
58 changes: 58 additions & 0 deletions src/assets/avatar/Avatar14.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
const Avatar14 = () => {
return (
<svg
viewBox="0 0 36 36"
fill="none"
role="img"
xmlns="http://www.w3.org/2000/svg"
width="80"
height="80"
>
<title>Abigail Adams</title>
<mask
id="mask__beam"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="36"
height="36"
>
<rect width="36" height="36" rx="72" fill="#FFFFFF" />
</mask>
<g mask="url(#mask__beam)">
<rect width="36" height="36" fill="#9bd6df" />
<rect
x="0"
y="0"
width="36"
height="36"
transform="translate(7 7) rotate(273 18 18) scale(1)"
fill="#bbf2c9"
rx="6"
/>
<g transform="translate(3.5 3.5) rotate(-3 18 18)">
<path d="M13,19 a1,0.75 0 0,0 10,0" fill="#000000" />
<rect
x="11"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
<rect
x="23"
y="14"
width="1.5"
height="2"
rx="1"
stroke="none"
fill="#000000"
/>
</g>
</g>
</svg>
);
};
export default Avatar14;
Loading