redbadger/website-honestly

View on GitHub
site/components/icons/twitter.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// @flow

import React from 'react';

export default function Twitter(props: {}) {
  return (
    <svg viewBox="0 0 25 20" xmlns="http://www.w3.org/2000/svg" {...props}>
      <title>Twitter</title>
      <path
        d="M7.771 19.709c9.117 0 14.104-7.52 14.104-14.04 0-.214 0-.427-.015-.638a10.06 10.06 0 0 0 2.473-2.555c-.905.4-1.864.661-2.847.777a4.956 4.956 0 0 0 2.18-2.73 9.96 9.96 0 0 1-3.148 1.198A4.977 4.977 0 0 0 14.563.75a4.932 4.932 0 0 0-2.492 5.472A14.094 14.094 0 0 1 1.855 1.066 4.925 4.925 0 0 0 3.39 7.653a4.937 4.937 0 0 1-2.25-.618v.063a4.942 4.942 0 0 0 3.977 4.837 4.97 4.97 0 0 1-2.238.085 4.96 4.96 0 0 0 4.63 3.427 9.974 9.974 0 0 1-7.335 2.045 14.079 14.079 0 0 0 7.597 2.213"
        fillRule="evenodd"
      />
    </svg>
  );
}