system-uicons/react/src/icons/calendar_add.js
2020-08-03 12:49:52 +08:00

44 lines
1.2 KiB
JavaScript

import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
const CalendarAdd = 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"
fill-rule="evenodd"
stroke="#2a2e3b"
stroke-linecap="round"
stroke-linejoin="round"
transform="translate(2 2)"
>
<path d="m2.5.5h12c1.1045695 0 2 .8954305 2 2v12c0 1.1045695-.8954305 2-2 2h-12c-1.1045695 0-2-.8954305-2-2v-12c0-1.1045695.8954305-2 2-2z"></path>
<path d="m.5 4.5h16"></path>
<g transform="translate(5 7)">
<path d="m3.5.5v6.056"></path>
<path d="m3.5.5v6" transform="matrix(0 1 -1 0 7 0)"></path>
</g>
</g>
</svg>
)
}
)
CalendarAdd.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
CalendarAdd.displayName = 'CalendarAdd'
export default CalendarAdd