system-uicons/react/src/icons/chevron_left_circle.js

44 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-08-03 06:49:52 +02:00
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
2020-08-03 07:09:39 +02:00
2020-08-03 06:49:52 +02:00
const ChevronLeftCircle = forwardRef(
({ color = 'currentColor', size = 21, ...rest }, ref) => {
return (
<svg
ref={ref}
xmlns="http://www.w3.org/2000/svg"
width={size}
height={size}
viewBox="0 0 21 21"
fill="none"
stroke={color}
strokeWidth="1"
strokeLinecap="round"
strokeLinejoin="round"
{...rest}
>
<g
fill="none"
2020-08-03 07:09:39 +02:00
stroke={color}
2020-08-03 06:49:52 +02:00
transform="matrix(-1 0 0 1 19 2)"
2020-08-03 07:09:39 +02:00
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
2020-08-03 06:49:52 +02:00
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<polyline
points="9.576 6.389 9.646 10.561 5.404 10.561"
transform="scale(1 -1) rotate(-45 -12.935 0)"
></polyline>
</g>
</svg>
)
}
)
ChevronLeftCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
ChevronLeftCircle.displayName = 'ChevronLeftCircle'
export default ChevronLeftCircle