@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 1.46 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Twitter.js.flow";
export default function Twitter(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<path d="M17.466 6.177c.6-.05 1.38-.38 1.84-.61l.445-.241c-.262.698-.617 1.245-1.165 1.66-.12.091-.241.216-.393.274.779.001 1.421-.345 2.032-.533a5.626 5.626 0 0 1-1.218 1.385l-.56.438c.01.813-.013 1.587-.167 2.27-.897 3.968-3.272 6.662-7.033 7.816-1.35.414-3.533.584-5.08.206-.767-.188-1.46-.4-2.111-.68a8.341 8.341 0 0 1-1.016-.515l-.315-.19c.349.011.757.106 1.147.044.353-.057.7-.042 1.025-.112.812-.175 1.533-.407 2.154-.765.302-.174.759-.378.973-.628a3.087 3.087 0 0 1-1.069-.19c-1.162-.403-1.838-1.145-2.277-2.26.351.038 1.365.128 1.603-.069-.444-.024-.87-.277-1.174-.464-.934-.576-1.696-1.541-1.69-3.027l.368.172c.234.097.473.15.753.206.118.024.354.093.49.043-.198-.207-.492-.345-.674-.567-.6-.734-1.162-1.863-.806-3.207.09-.341.233-.643.386-.92.086.152.242.258.34.378.307.374.685.71 1.07 1.006 1.31 1.01 2.491 1.63 4.387 2.09a6.993 6.993 0 0 0 1.612.206c-.161-.463-.11-1.212.018-1.66.32-1.126 1.014-1.938 2.032-2.373.243-.104.513-.18.797-.24l.438-.052c1.39-.024 2.13.475 2.838 1.11z" />
</OrbitIcon>
);
}