appirio-tech-react-components-test10
Version:
Topcoder UI Kit library of components for our React apps.
24 lines (20 loc) • 822 B
JSX
import React from 'react'
import PropTypes from 'prop-types'
const IconUIInfo = (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">IconUIInfo</title>
<path fill={fill} d="M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z"/><path data-color="color-2" fill="#444" d="M7 7h2v5H7z"/><circle data-color="color-2" fill="#444" cx="8" cy="5" r="1"/>
</svg>
)
}
IconUIInfo.propTypes = {
fill : PropTypes.string,
stroke : PropTypes.string,
height : PropTypes.number,
width : PropTypes.number
}
export default IconUIInfo