redbadger/website-honestly

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

Summary

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

import React from 'react';

export default function Like(props: {}) {
  return (
    <svg viewBox="0 0 17 16" xmlns="http://www.w3.org/2000/svg" {...props}>
      <path
        d="M16.611 4.613C16.37 1.94 14.476 0 12.108 0c-1.577 0-3.022.85-3.834 2.21C7.468.832 6.083 0 4.53 0 2.163 0 .27 1.94.028 4.613c-.02.118-.098.74.141 1.753.345 1.462 1.142 2.791 2.304 3.844l5.797 5.26 5.896-5.26c1.162-1.053 1.959-2.382 2.304-3.844.239-1.013.16-1.635.141-1.753z"
        fill="#212121"
        fillRule="evenodd"
      />
    </svg>
  );
}