UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 864 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Calendar = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M19 6.184V6a3 3 0 10-6 0h-2a3 3 0 10-6 0v.184A2.997 2.997 0 003 9v9c0 1.654 1.346 3 3 3h12c1.654 0 3-1.346 3-3V9a2.997 2.997 0 00-2-2.816zM15 6a1 1 0 112 0v2a1 1 0 11-2 0V6zM7 6a1 1 0 112 0v2a1 1 0 11-2 0V6zm12 12c0 .551-.448 1-1 1H6c-.552 0-1-.449-1-1v-6h14v6z", key: "k0" }))); }); Calendar.displayName = 'Calendar'; export var CalendarDimensions = { height: 24, width: 24 };