24 lines
1020 B
JavaScript
24 lines
1020 B
JavaScript
const AngleLeftIcon = ({
|
|
className = '',
|
|
size = '16px',
|
|
title = '',
|
|
}) => (
|
|
<svg
|
|
className={className}
|
|
version='1.1'
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
x='0px'
|
|
y='0px'
|
|
width={size}
|
|
height={size}
|
|
viewBox='0 0 64 64'
|
|
xmlSpace='preserve'
|
|
aria-label={title}
|
|
>
|
|
<g>
|
|
<path d='M 25.835938 32.011719 L 49.777344 8.070312 C 50.4375 7.414062 50.800781 6.535156 50.800781 5.59375 C 50.800781 4.65625 50.4375 3.777344 49.777344 3.121094 L 47.679688 1.023438 C 47.019531 0.363281 46.140625 0 45.203125 0 C 44.265625 0 43.386719 0.363281 42.730469 1.023438 L 14.222656 29.53125 C 13.558594 30.191406 13.199219 31.074219 13.199219 32.011719 C 13.199219 32.953125 13.558594 33.835938 14.222656 34.5 L 42.703125 62.976562 C 43.359375 63.636719 44.238281 64 45.179688 64 C 46.117188 64 46.996094 63.636719 47.652344 62.976562 L 49.75 60.878906 C 51.117188 59.515625 51.117188 57.292969 49.75 55.929688 Z M 25.835938 32.011719' />
|
|
</g>
|
|
</svg>
|
|
)
|
|
|
|
export default AngleLeftIcon |