UNPKG

styled-icons

Version:

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

15 lines (14 loc) 994 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var NotificationOff = 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.586 20H4a.5.5 0 01-.4-.8l.4-.533V10c0-1.33.324-2.584.899-3.687L1.393 2.808l1.415-1.415 19.799 19.8-1.415 1.414L18.586 20zM6.408 7.822A5.985 5.985 0 006 10v8h10.586L6.408 7.822zM20 15.786l-2-2V10a6 6 0 00-8.99-5.203L7.56 3.345A8 8 0 0120 10v5.786zM9.5 21h5a2.5 2.5 0 11-5 0z", key: "k1" }))); }); NotificationOff.displayName = 'NotificationOff'; export var NotificationOffDimensions = { height: 24, width: 24 };