styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.48 kB
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.Broadcast = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }),
React.createElement("path", { d: "M4.929 2.929l1.414 1.414A7.975 7.975 0 004 10c0 2.21.895 4.21 2.343 5.657L4.93 17.07A9.969 9.969 0 012 10a9.969 9.969 0 012.929-7.071zm14.142 0A9.969 9.969 0 0122 10a9.969 9.969 0 01-2.929 7.071l-1.414-1.414A7.975 7.975 0 0020 10c0-2.21-.895-4.21-2.343-5.657L19.07 2.93zM7.757 5.757l1.415 1.415A3.987 3.987 0 008 10c0 1.105.448 2.105 1.172 2.828l-1.415 1.415A5.981 5.981 0 016 10c0-1.657.672-3.157 1.757-4.243zm8.486 0A5.981 5.981 0 0118 10a5.981 5.981 0 01-1.757 4.243l-1.415-1.415A3.987 3.987 0 0016 10a3.987 3.987 0 00-1.172-2.828l1.415-1.415zM12 12a2 2 0 110-4 2 2 0 010 4zm0 2c.58 0 1.077.413 1.184.983L14.5 22h-5l1.316-7.017c.107-.57.604-.983 1.184-.983z", key: "k1" })));
});
exports.Broadcast.displayName = 'Broadcast';
exports.BroadcastDimensions = { height: 24, width: 24 };
;