Files
omnivore/packages/web/components/elements/images/ChromeIcon.tsx
2022-03-23 18:27:29 +00:00

17 lines
1.6 KiB
TypeScript

type ChromeIconProps = {
fillColor?: string
}
export function ChromeIcon(props: ChromeIconProps): JSX.Element {
return (
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M11.9468 0.252006C11.9468 0.252006 19.0093 -0.0658779 22.7524 7.03165H11.3464C11.3464 7.03165 9.19246 6.96087 7.35602 9.57419C6.82659 10.669 6.26168 11.7991 6.89719 14.0234C5.97901 12.47 2.02399 5.58404 2.02399 5.58404C2.02399 5.58404 4.81381 0.534328 11.9468 0.252006Z" fill="#E14C40"/>
<path d="M22.3846 18.2729C22.3846 18.2729 19.1279 24.5472 11.1094 24.239C12.0987 22.5269 16.8136 14.3621 16.8136 14.3621C16.8136 14.3621 17.952 12.5323 16.6081 9.63541C15.9248 8.62915 15.2288 7.57477 12.9844 7.01245C14.7894 6.99471 22.7298 7.01365 22.7298 7.01365C22.7298 7.01365 25.7071 11.955 22.3846 18.273" fill="#FFD24D"/>
<path d="M1.55978 18.3206C1.55978 18.3206 -2.2456 12.3621 2.03127 5.57252L7.73199 15.4519C7.73199 15.4519 8.74745 17.3525 11.9285 17.6371C13.1414 17.5486 14.4024 17.4732 16.0114 15.8109C15.1246 17.3826 11.1373 24.2499 11.1373 24.2499C11.1373 24.2499 5.36956 24.3574 1.55978 18.3206Z" fill="#00AA60"/>
<path d="M6.57373 12.3482C6.57373 9.39729 8.96612 7.00455 11.9176 7.00455C14.869 7.00455 17.2611 9.39729 17.2611 12.3482C17.2611 15.3 14.869 17.6924 11.9176 17.6924C8.96612 17.6924 6.57373 15.3 6.57373 12.3481" fill="white"/>
<path d="M7.72754 12.3482C7.72754 10.0343 9.60367 8.15815 11.9179 8.15815C14.2314 8.15815 16.1079 10.0343 16.1079 12.3482C16.1079 14.6625 14.2315 16.5386 11.9179 16.5386C9.60367 16.5386 7.72754 14.6624 7.72754 12.3482Z" fill="#577FC0"/>
</svg>
)
}