redbadger/website-honestly

View on GitHub
site/components/icons/badger-in-circle.js

Summary

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

import React from 'react';

export default function BadgerInCircle() {
  return (
    <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400">
      <title>Sally the Red Badger Badger</title>
      <circle cx="200" cy="200" r="200" fill="#fc1d42" />
      <circle cx="200" cy="200" r="136.98" fill="#fff" />
      <path
        d="M281.9 219.81c-4.89-2-14.39-9.5-19-17a108.31 108.31 0 0 1-6-12.68c-.94-2.35-1.91-4.67-2.88-6.95-1.88-4.57-3.74-9.09-5.41-12.77 14.84-8 30.65-18 30.65-25.55 0-18.76-46.67-35.95-75.08-35.36-1.41 0-2.83.11-4.26.23-1.48-3.53-5.15-7.42-11.62-6-5.29 1.13-9.1 5.52-8.88 10.67-9.33 3.39-17.46 8.16-22.49 13.08a61.71 61.71 0 0 0-7.56 9c-11.66-4.3-25.09 5.13-25.19 17.6-.07 8.58 3.35 13.57 9.79 17.53l-.06.19c-18.09 60.36 7.9 102.59 19.67 113.09 7.44 6.63 12.87 11.21 24 11.21 9.45 0 12.19-2.2 11.28-7.43a102.76 102.76 0 0 1-1.2-13.59c4 .29 8.71.63 13.73.79-.57 5.23-1.25 10-1.83 13.2-.9 5 .52 6.92 12.68 6.92 11.13 0 14.09-1.78 21.57-8.4 6.93-6.14 11.6-14.85 14.64-24.81 10.93-11.67 16.19-23.36 17-37 6.3 1.46 12 1.61 16.82-1.79 2.08-1.49 1.98-3.24-.37-4.18z"
        fill="#212121"
      />
      <path
        d="M258.27 150.13a5.92 5.92 0 0 1-.71-1c-1.79-3.37 0-7.88 3.92-10.67a1.69 1.69 0 0 0 .24-2.73C246.88 124.41 224.36 118 206 118.3c-12.2.23-24 2.85-34.12 9.25l-.22.15c-2 1.37-.72 2.88.84 2.54 24.57-5.39 72.61 1.8 71.06 12.42-.93 6.37-63.63.65-93.15 24.08-5.07 4-8.84 12.18-11.67 26.15a130 130 0 0 0-1.8 24.11c.22 7.88 2.42 6.91 5 2.47 6.38-10.9 15.59-22.58 27.22-29.59 36.17-21.79 63.17-17.91 89-36.82 1.09-.82.64-2.29.11-2.93z"
        fill="#fff"
      />
    </svg>
  );
}