system-uicons/react/src/icons/calendar_month.js

56 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-08-03 06:49:52 +02:00
import React, { forwardRef } from 'react'
import PropTypes from 'prop-types'
2020-08-03 07:09:39 +02:00
2020-08-03 06:49:52 +02:00
const CalendarMonth = 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}
>
2020-08-03 07:09:39 +02:00
<g fill="none" transform="translate(2 2)" fillRule="evenodd">
2020-08-03 06:49:52 +02:00
<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"
2020-08-03 07:09:39 +02:00
stroke={color}
strokeLinecap="round"
strokeLinejoin="round"
2020-08-03 06:49:52 +02:00
></path>
<path
d="m.5 4.5h16"
2020-08-03 07:24:20 +02:00
stroke={color}
2020-08-03 07:09:39 +02:00
strokeLinecap="round"
strokeLinejoin="round"
2020-08-03 06:49:52 +02:00
></path>
2020-08-03 07:24:20 +02:00
<g fill={color}>
2020-08-03 06:49:52 +02:00
<g>
<circle cx="8.5" cy="8.5" r="1"></circle>
<circle cx="4.5" cy="8.5" r="1"></circle>
<circle cx="12.5" cy="8.5" r="1"></circle>
</g>
<g>
<circle cx="8.5" cy="12.5" r="1"></circle>
<circle cx="4.5" cy="12.5" r="1"></circle>
<circle cx="12.5" cy="12.5" r="1"></circle>
</g>
</g>
</g>
</svg>
)
}
)
CalendarMonth.propTypes = {
color: PropTypes.string,
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
}
CalendarMonth.displayName = 'CalendarMonth'
export default CalendarMonth