system-uicons/react/src/icons/chevron_up_circle.js
2020-08-03 13:09:39 +08:00

44 lines
1.1 KiB
JavaScript

import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronUpCircle = 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"
stroke={color}
transform="rotate(-90 10.5 8.5)"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<circle cx="8.5" cy="8.5" r="8"></circle>
<polyline
points="9.621 6.379 9.621 10.621 5.379 10.621"
transform="scale(1 -1) rotate(-45 -13.02 0)"
></polyline>
</g>
</svg>
)
}
)
ChevronUpCircle.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
ChevronUpCircle.displayName = 'ChevronUpCircle'
export default ChevronUpCircle