File size: 574 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
export default function ReaderA8cIcon( { size = 20, viewBox = '0 0 20 20' } ) {
return (
<svg
className="sidebar__menu-icon sidebar_svg-a8c"
fill="none"
height={ size }
viewBox={ viewBox }
width={ size }
xmlns="http://www.w3.org/2000/svg"
>
<g stroke="#a2aab2" strokeLinecap="round" strokeWidth="1.5">
<path
d="m10 17.5c4.5563 0 8.25-3.3579 8.25-7.5 0-4.14214-3.6937-7.5-8.25-7.5-4.55635 0-8.25 3.35786-8.25 7.5 0 4.1421 3.69365 7.5 8.25 7.5z"
strokeLinejoin="round"
/>
<path d="m11.75 7.25-3.5 5.5" />
</g>
</svg>
);
}
|