File size: 768 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import React from 'react';

const AuthorIcon = ({ fill }) => {
   return (
      <svg
         fill={fill}
         xmlns='http://www.w3.org/2000/svg'
         width='24'
         height='24'
         viewBox='0 0 24 24'
         role='img'
         aria-labelledby='ad5qm35q283uj5dee82f1ucgi7jdkwfz'
         className='crayons-icon'
      >
         <title id='ad5qm35q283uj5dee82f1ucgi7jdkwfz'>Author</title>
         <path d='M12 8.25a6 6 0 110 12 6 6 0 010-12zm0 2.625l-.992 2.01-2.218.322 1.605 1.564-.379 2.21L12 15.937l1.984 1.043-.379-2.209 1.605-1.564-2.218-.323L12 10.875zm.75-6.376l3.75.001v2.25l-1.022.854a7.45 7.45 0 00-2.728-.817V4.5zm-1.5 0v2.288a7.451 7.451 0 00-2.727.816L7.5 6.75V4.5h3.75z'></path>
      </svg>
   );
};

export default AuthorIcon;