aboutsummaryrefslogtreecommitdiff
path: root/components/media/discord.js
blob: dd8781d640994022055558b810cdf603a71f1d77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
function Discord(props) {
  return (
    <svg
      className={props.className}
      xmlns="http://www.w3.org/2000/svg"
      width="45"
      height="37"
      fill="none"
      viewBox="0 0 45 37"
    >
      <path d="M36.881 5.047a.107.107 0 00-.054-.05 33.437 33.437 0 00-8.415-2.682.125.125 0 00-.078.01.13.13 0 00-.057.055 24.674 24.674 0 00-1.048 2.212 30.649 30.649 0 00-9.452 0 22.619 22.619 0 00-1.064-2.212.135.135 0 00-.058-.054.13.13 0 00-.077-.011 33.342 33.342 0 00-8.416 2.681.121.121 0 00-.055.05c-5.36 8.226-6.828 16.25-6.108 24.175a.148.148 0 00.054.1 33.947 33.947 0 0010.323 5.36.13.13 0 00.146-.048 25.3 25.3 0 002.111-3.53.136.136 0 00.006-.11.134.134 0 00-.077-.077 22.316 22.316 0 01-3.225-1.58.139.139 0 01-.013-.226c.216-.166.433-.34.64-.515a.125.125 0 01.134-.018c6.766 3.173 14.091 3.173 20.777 0a.124.124 0 01.135.017c.207.175.424.35.643.517a.137.137 0 01.052.116.14.14 0 01-.064.11 20.941 20.941 0 01-3.227 1.578.131.131 0 00-.076.078.14.14 0 00.006.11 28.405 28.405 0 002.11 3.528.128.128 0 00.145.05 33.831 33.831 0 0010.34-5.36.134.134 0 00.055-.098c.862-9.162-1.444-17.121-6.113-24.176zM15.644 24.396c-2.037 0-3.716-1.922-3.716-4.282 0-2.36 1.646-4.28 3.716-4.28 2.086 0 3.748 1.938 3.715 4.28 0 2.36-1.646 4.281-3.715 4.281zm13.737 0c-2.037 0-3.715-1.922-3.715-4.282 0-2.36 1.646-4.28 3.715-4.28 2.087 0 3.749 1.938 3.716 4.28 0 2.36-1.63 4.281-3.716 4.281z"></path>
    </svg>
  );
}

export default Discord;