IconBroadcast.tsx37 lines · main
1import IconBase from './../../IconBase'
2
3const SvgComponent = () => (
4 <>
5 <path
6 id="Ellipse 146"
7 d="M17.3154 6.70312C18.6968 8.06227 19.5532 9.95249 19.5532 12.0426C19.5532 14.1326 18.6968 16.0229 17.3154 17.382M6.79102 6.70312C5.40966 8.06227 4.55322 9.95249 4.55322 12.0426C4.55322 14.1326 5.40966 16.0229 6.79102 17.382"
8 stroke="currentColor"
9 strokeMiterlimit="10"
10 strokeLinejoin="bevel"
11 opacity={0.45}
12 />
13 <ellipse
14 id="Ellipse 144"
15 cx="12.0532"
16 cy="12.0428"
17 rx="3.00928"
18 ry="3.00666"
19 stroke="currentColor"
20 strokeMiterlimit="10"
21 strokeLinejoin="bevel"
22 />
23 <path
24 id="Vector 96"
25 d="M12.0747 15.0488L12.0747 23.9996"
26 stroke="currentColor"
27 strokeMiterlimit="10"
28 strokeLinejoin="bevel"
29 />
30 </>
31)
32
33function IconBroadcast(props: any) {
34 return <IconBase src={<SvgComponent />} viewBox="0 0 24 24" {...props} />
35}
36
37export default IconBroadcast