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

38 lines
937 B
JavaScript

import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const ChevronUp = 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}
>
<polyline
fill="none"
stroke={color}
points="7.328 1.672 7.328 7.328 1.672 7.328"
transform="rotate(-135 9.157 7.258)"
strokeLinecap="round"
strokeLinejoin="round"
></polyline>
</svg>
)
}
)
ChevronUp.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
ChevronUp.displayName = 'ChevronUp'
export default ChevronUp