styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 980 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.PowerOff = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M12 21c4.411 0 8-3.589 8-8 0-3.35-2.072-6.221-5-7.411v2.223A6 6 0 0118 13c0 3.309-2.691 6-6 6s-6-2.691-6-6a5.999 5.999 0 013-5.188V5.589C6.072 6.779 4 9.65 4 13c0 4.411 3.589 8 8 8z", key: "k0" }),
React.createElement("path", { d: "M11 2h2v10h-2z", key: "k1" })));
});
exports.PowerOff.displayName = 'PowerOff';
exports.PowerOffDimensions = { height: 24, width: 24 };
;