{
  "mappings": "AAIA,cAAc,iBAAiB;KAqB1B,iBAAiB,SAAS,cAAc,IAAI;AAEjD,OAAO,cAAM,YAAY",
  "names": [],
  "sources": [
    "src/icons/RadioTower.tsx"
  ],
  "version": 3,
  "sourcesContent": [
    "// @ts-nocheck\nimport React, { memo } from 'react'\nimport PropTypes from 'prop-types'\nimport type { NamedExoticComponent } from 'react'\nimport type { IconProps } from '@tamagui/helpers-icon'\nimport {\n  Svg,\n  Circle as _Circle,\n  Ellipse,\n  G,\n  LinearGradient,\n  RadialGradient,\n  Line,\n  Path,\n  Polygon,\n  Polyline,\n  Rect,\n  Symbol,\n  Text as _Text,\n  Use,\n  Defs,\n  Stop,\n} from 'react-native-svg'\nimport { themed } from '@tamagui/helpers-icon'\n\ntype IconComponent = (propsIn: IconProps) => JSX.Element\n\nexport const RadioTower: IconComponent = themed(\n  memo(function RadioTower(props: IconProps) {\n    const { color = 'black', size = 24, ...otherProps } = props\n    return (\n      <Svg\n        width={size}\n        height={size}\n        viewBox=\"0 0 24 24\"\n        fill=\"none\"\n        stroke={color}\n        strokeWidth=\"2\"\n        strokeLinecap=\"round\"\n        strokeLinejoin=\"round\"\n        {...otherProps}\n      >\n        <Path d=\"M4.9 16.1C1 12.2 1 5.8 4.9 1.9\" stroke={color} />\n        <Path d=\"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5\" stroke={color} />\n        <_Circle cx=\"12\" cy=\"9\" r=\"2\" stroke={color} />\n        <Path d=\"M16.2 4.8c2 2 2.26 5.11.8 7.47\" stroke={color} />\n        <Path d=\"M19.1 1.9a9.96 9.96 0 0 1 0 14.1\" stroke={color} />\n        <Path d=\"M9.5 18h5\" stroke={color} />\n        <Path d=\"m8 22 4-11 4 11\" stroke={color} />\n      </Svg>\n    )\n  })\n)\n"
  ]
}