styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
20 lines (19 loc) • 995 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var ZapOff = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "none",
"xmlns": "http://www.w3.org/2000/svg",
"stroke": "currentColor",
"strokeLinecap": "round",
"strokeLinejoin": "round",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("polyline", { points: "12.41 6.75 13 2 10.57 4.92", key: "k0" }),
React.createElement("polyline", { points: "18.57 12.91 21 10 15.66 10", key: "k1" }),
React.createElement("polyline", { points: "8 8 3 14 12 14 11 22 16 16", key: "k2" }),
React.createElement("line", { x1: 1, x2: 23, y1: 1, y2: 23, key: "k3" })));
});
ZapOff.displayName = 'ZapOff';
export var ZapOffDimensions = { height: 24, width: 24 };