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.29 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Broadcast = 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: "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 4zm-1 2h2v8h-2v-8z", key: "k1" }))); }); Broadcast.displayName = 'Broadcast'; export var BroadcastDimensions = { height: 24, width: 24 };