aboutsummaryrefslogtreecommitdiff
path: root/pages/components/media/twitter.js
blob: b62f0d12a3828fd28d6aed4daab430053e491fd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function Twitter(props) {
  return (
    <svg
      xmlns="http://www.w3.org/2000/svg"
      width="37"
      height="37"
      fill="none"
      viewBox="0 0 37 37"
    >
      <path
        className={props.className}
        d="M.289 31.833c4.018.361 7.638-.65 10.934-3.122-3.447-.304-5.753-2.023-7.039-5.247 1.127.138 2.182.174 3.303-.13-3.715-1.156-5.695-3.584-5.962-7.5 1.113.52 2.16.895 3.396.91-2.204-1.655-3.331-3.801-3.288-6.504a7.007 7.007 0 011.012-3.52c4.083 4.777 9.206 7.422 15.515 7.863-.036-.275-.058-.491-.087-.715-.52-4.004 2.082-7.646 6.056-8.405 2.493-.477 4.698.18 6.562 1.9.29.26.535.319.896.225a18.022 18.022 0 004.17-1.626c-.513 1.69-1.568 2.963-3 4.032.326-.058.658-.101.984-.166.34-.072.679-.152 1.019-.246.325-.087.643-.188.96-.296.326-.108.651-.231 1.034-.296-.188.26-.368.534-.57.787a16.848 16.848 0 01-2.87 2.826.57.57 0 00-.195.405c.058 2.565-.303 5.065-1.134 7.494-1.634 4.784-4.48 8.657-8.752 11.425-2.11 1.366-4.415 2.262-6.88 2.782a22.72 22.72 0 01-7.363.318 20.397 20.397 0 01-7.032-2.16c-.585-.297-1.149-.63-1.72-.947.022-.03.036-.058.05-.087z"
      ></path>
    </svg>
  );
}

export default Twitter;