mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
32 lines
1.5 KiB
XML
32 lines
1.5 KiB
XML
type ChromeIconProps = {
|
|
fillColor: string
|
|
}
|
|
|
|
export function ChromeIcon(props: ChromeIconProps): JSX.Element {
|
|
return (
|
|
<svg
|
|
width="24"
|
|
height="24"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M12 18.1219C10.8 18.1219 9.68437 17.7891 8.69062 17.1281C7.69687 16.4672 6.95156 15.6375 6.45469 14.6063L1.49062 6C0.454687 7.86094 0 9.89062 0 12C0 15.0188 0.99375 17.6297 2.93906 19.8609C4.88438 22.0922 7.32656 23.4187 10.2234 23.8734L13.7016 17.8312C13.3641 17.9578 12.7453 18.1219 12 18.1219Z"
|
|
fill={props.fillColor}
|
|
/>
|
|
<path
|
|
d="M8.23594 7.03594C9.35156 6.16875 10.5938 5.79375 12 5.79375H22.3031C21.225 3.975 19.7812 2.64844 17.9578 1.6125C16.1391 0.539063 14.1516 0 12 0C10.1391 0 8.35781 0.4125 6.74531 1.2C5.13281 1.9875 3.6 3.14531 2.52656 4.63594L6 10.3453C6.33281 9.01875 7.11562 7.90313 8.23594 7.03594Z"
|
|
fill={props.fillColor}
|
|
/>
|
|
<path
|
|
d="M23.0906 7.49063H16.1391C17.3391 8.69063 18.1688 10.2609 18.1688 12C18.1688 13.2844 17.7984 14.4422 17.0906 15.5156L12.1219 24C15.3891 23.9578 18.2062 22.8 20.5219 20.4422C22.8375 18.0844 24 15.2672 24 12C24 10.4672 23.7516 8.85469 23.0906 7.49063Z"
|
|
fill={props.fillColor}
|
|
/>
|
|
<path
|
|
d="M12 7.44844C14.4844 7.44844 16.5516 9.51562 16.5516 12C16.5516 14.4844 14.4844 16.5516 12 16.5516C9.51562 16.5516 7.44844 14.4844 7.44844 12C7.44844 9.51562 9.51562 7.44844 12 7.44844Z"
|
|
fill={props.fillColor}
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|