UNPKG

appirio-tech-react-components-test10

Version:

Topcoder UI Kit library of components for our React apps.

24 lines (20 loc) 833 B
import React from 'react' import PropTypes from 'prop-types' const IconUICalendarAdd = (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">IconUICalendarAdd</title> <path fill={fill} d="M15 2h-2V1c0-.6-.4-1-1-1h-1c-.6 0-1 .4-1 1v1H6V1c0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1v1H1c-.6 0-1 .4-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V3c0-.6-.4-1-1-1zm-1 12H2V6h12v8z"/><path d="M7 13h2v-2h2V9H9V7H7v2H5v2h2z"/> </svg> ) } IconUICalendarAdd.propTypes = { fill : PropTypes.string, stroke : PropTypes.string, height : PropTypes.number, width : PropTypes.number } export default IconUICalendarAdd