appirio-tech-react-components-test10
Version:
Topcoder UI Kit library of components for our React apps.
24 lines (20 loc) • 698 B
JSX
import React from 'react'
import PropTypes from 'prop-types'
const IconArrolTailLeft = (props) => {
const fill = props.fill || '#62AADC'
const height = props.height || '16'
const width = props.width || '16'
return (
<svg xmlns="http://www.w3.org/2000/svg" height={height} width={width} viewBox="0 0 16 16" aria-labelledby="title">
<title id="title">IconArrolTailLeft</title>
<path fill={fill} d="M8.121 2.707L6.707 1.293 0 8l6.707 6.707 1.414-1.414L3.828 9H16V7H3.828z"/>
</svg>
)
}
IconArrolTailLeft.propTypes = {
fill : PropTypes.string,
stroke : PropTypes.string,
height : PropTypes.number,
width : PropTypes.number
}
export default IconArrolTailLeft