UNPKG

styled-icons

Version:

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

15 lines (14 loc) 1.04 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var MailForbid = 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: "M15.266 11.554l4.388-3.798-1.308-1.512-6.285 5.439-6.414-5.445-1.294 1.524 7.702 6.54A6.967 6.967 0 0011 18c0 1.074.242 2.09.674 3H3a1 1 0 01-1-1V4a1 1 0 011-1h18a1 1 0 011 1v8.255A6.968 6.968 0 0018 11c-.97 0-1.894.197-2.734.554zm1.44 9.154a3 3 0 004.001-4.001l-4 4zm-1.414-1.415l4.001-4a3 3 0 00-4.001 4.001zM18 23a5 5 0 110-10 5 5 0 010 10z", key: "k1" }))); }); MailForbid.displayName = 'MailForbid'; export var MailForbidDimensions = { height: 24, width: 24 };