modcomms/frontend/components/icons/EagleIcon.tsx
2025-12-18 16:51:27 +00:00

15 lines
889 B
TypeScript
Executable file

import React from 'react';
export const EagleIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
{...props}
>
<path d="M12.63,2.18C12.43,2.07,12.21,2,12,2s-0.43,0.07-0.63,0.18L4.8,6.21C4.4,6.42,4.4,7.08,4.8,7.29L11.37,11 c0.11,0.06,0.24,0.09,0.37,0.09c0.23,0,0.45-0.09,0.63-0.27l6.2-5.59c0.39-0.35,0.43-0.95,0.08-1.34 C18.3,3.44,17.7,3.4,17.3,3.75L12,8.42L6.7,4.21l5.3-2.65V14c0,0.55,0.45,1,1,1s1-0.45,1-1V1.58 c0-0.23-0.09-0.45-0.27-0.63L12.63,2.18z" />
<path d="M19,13c-2.76,0-5,2.24-5,5s2.24,5,5,5s5-2.24,5-5S21.76,13,19,13z M19,21c-1.65,0-3-1.35-3-3s1.35-3,3-3 s3,1.35,3,3S20.65,21,19,21z" />
<path d="M12,14c-3.31,0-6,2.69-6,6s2.69,6,6,6h1v-2h-1c-2.21,0-4-1.79-4-4s1.79-4,4-4s4,1.79,4,4v2.35 c0.61-0.21,1.27-0.35,2-0.35v-1c0-3.31-2.69-6-6-6H12z" />
</svg>
);