UNPKG

styled-icons

Version:

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

15 lines (14 loc) 921 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var MailUnread = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M18.803 8.493A5.023 5.023 0 0022 8.9V20a1 1 0 01-1 1H3a1 1 0 01-1-1V4a1 1 0 011-1h13.1c-.066.323-.1.658-.1 1a4.98 4.98 0 001.193 3.241l-5.132 4.442-6.414-5.445-1.294 1.524 7.72 6.555 6.73-5.824zM21 7a3 3 0 110-6 3 3 0 010 6z", key: "k1" }))); }); MailUnread.displayName = 'MailUnread'; export var MailUnreadDimensions = { height: 24, width: 24 };