omnivore/packages/web/components/elements/images/social/TwitterIcon.tsx
2022-02-11 09:24:33 -08:00

23 lines
1.5 KiB
XML

type TwitterIconProps = {
color: string
}
export function TwitterIcon(props: TwitterIconProps): JSX.Element {
return (
<svg
width="28"
height="20"
viewBox="0 0 24 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M7.55016 19.7507C16.6045 19.7507 21.5583 12.2474 21.5583 5.74259C21.5583 5.53166 21.5536 5.31603 21.5442 5.10509C22.5079 4.40819 23.3395 3.54499 24 2.55603C23.1025 2.95533 22.1496 3.21611 21.1739 3.32947C22.2013 2.71364 22.9705 1.7462 23.3391 0.606499C22.3726 1.17929 21.3156 1.58334 20.2134 1.80134C19.4708 1.01229 18.489 0.489849 17.4197 0.314783C16.3504 0.139718 15.2532 0.321783 14.2977 0.832829C13.3423 1.34387 12.5818 2.15544 12.1338 3.14204C11.6859 4.12865 11.5754 5.23535 11.8195 6.29103C9.86249 6.19282 7.94794 5.68444 6.19998 4.79883C4.45203 3.91322 2.90969 2.67017 1.67297 1.15025C1.0444 2.23398 0.852057 3.51638 1.13503 4.73682C1.418 5.95727 2.15506 7.02418 3.19641 7.72072C2.41463 7.6959 1.64998 7.48541 0.965625 7.10665V7.16759C0.964925 8.30488 1.3581 9.40732 2.07831 10.2875C2.79852 11.1677 3.80132 11.7713 4.91625 11.9957C4.19206 12.1939 3.43198 12.2227 2.69484 12.0801C3.00945 13.0582 3.62157 13.9136 4.44577 14.5271C5.26997 15.1405 6.26512 15.4813 7.29234 15.502C5.54842 16.8718 3.39417 17.6149 1.17656 17.6113C0.783287 17.6107 0.390399 17.5866 0 17.5392C2.25286 18.9845 4.87353 19.7521 7.55016 19.7507Z"
fill={props.color}
/>
</svg>
)
}
export default TwitterIcon