26 lines
957 B
JavaScript
26 lines
957 B
JavaScript
const BackIcon = ({
|
|
className = '',
|
|
width = '16px',
|
|
height = '16px',
|
|
viewBox = '0 0 60 60',
|
|
title = 'Back',
|
|
}) => (
|
|
<svg
|
|
className={className}
|
|
version='1.1'
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
x='0px'
|
|
y='0px'
|
|
width={width}
|
|
height={height}
|
|
viewBox={viewBox}
|
|
xmlSpace='preserve'
|
|
aria-label={title}
|
|
>
|
|
<g>
|
|
<path d="M 19.570312 9.542969 C 20.417969 8.695312 21.75 8.695312 22.59375 9.542969 C 23.410156 10.359375 23.410156 11.71875 22.59375 12.535156 L 7.265625 27.867188 L 57.851562 27.867188 C 59.03125 27.867188 60 28.804688 60 29.984375 C 60 31.164062 59.03125 32.128906 57.851562 32.128906 L 7.265625 32.128906 L 22.59375 47.433594 C 23.410156 48.277344 23.410156 49.640625 22.59375 50.457031 C 21.75 51.300781 20.417969 51.300781 19.570312 50.457031 L 0.613281 31.496094 C -0.207031 30.679688 -0.207031 29.316406 0.613281 28.503906 Z M 19.570312 9.542969" />
|
|
</g>
|
|
</svg>
|
|
)
|
|
|
|
export default BackIcon |