Files
NewStrcuture_Backup/src/components/shared/captain-america-shield.tsx
T

19 lines
508 B
TypeScript

"use client"
export function CaptainAmericaShield() {
return (
<svg
width="28"
height="28"
viewBox="0 0 100 100"
aria-hidden="true"
>
<circle cx="50" cy="50" r="48" fill="#c62828" />
<circle cx="50" cy="50" r="36" fill="#efefef" />
<circle cx="50" cy="50" r="24" fill="#c62828" />
<circle cx="50" cy="50" r="14" fill="#1565c0" />
<polygon points="50,34 55,48 70,48 58,57 62,72 50,62 38,72 42,57 30,48 45,48" fill="#efefef" />
</svg>
)
}