{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRadio/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconRadio: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"radio, antenna, signal, broadcast, speaker\"><path d=\"M4 6.74976H21.25V20.2498H2.75V6.75L15 2.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M3 11.75H21\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.75 7.5V11.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M17 16.5C16.7239 16.5 16.5 16.2761 16.5 16C16.5 15.7239 16.7239 15.5 17 15.5C17.2761 15.5 17.5 15.7239 17.5 16C17.5 16.2761 17.2761 16.5 17 16.5Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"square\"/><path d=\"M13 16.5C12.7239 16.5 12.5 16.2761 12.5 16C12.5 15.7239 12.7239 15.5 13 15.5C13.2761 15.5 13.5 15.7239 13.5 16C13.5 16.2761 13.2761 16.5 13 16.5Z\" fill=\"currentColor\" stroke=\"currentColor\" strokeWidth=\"1.25\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconRadio;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA6yB,EAA7yB,IAAqB,EAAO,UAAU,8CAA6C,gBAAC,OAAD,CAAM,EAAE,6CAA6C,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,cAAc,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAe,OAAO,eAAe,YAAY,OAAO,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,oJAAoJ,KAAK,eAAe,OAAO,eAAe,YAAY,OAAO,cAAc,SAAQ,CAAI,GAGvyB",
  "debugId": "5367F825B81755C064756E2164756E21",
  "names": []
}