File size: 494 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import React from 'react';
const CommentIcon = ({ fill }) => {
return (
<svg
fill={fill}
className='crayons-icon'
width='24'
height='24'
xmlns='http://www.w3.org/2000/svg'
>
<path d='M10.5 5h3a6 6 0 110 12v2.625c-3.75-1.5-9-3.75-9-8.625a6 6 0 016-6zM12 15.5h1.5a4.501 4.501 0 001.722-8.657A4.5 4.5 0 0013.5 6.5h-3A4.5 4.5 0 006 11c0 2.707 1.846 4.475 6 6.36V15.5z'></path>
</svg>
);
};
export default CommentIcon;
|