{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBluetooth/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 IconBluetooth: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"bluetooth\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9.9577 3.31757C9.9577 2.25778 11.1938 1.67883 12.0079 2.3573L17.2227 6.70291C17.8259 7.20558 17.8217 8.13341 17.214 8.63063L13.0958 12.0001L17.214 15.3695C17.8217 15.8667 17.8259 16.7945 17.2227 17.2972L12.0079 21.6428C11.1938 22.3213 9.9577 21.7423 9.9577 20.6825V14.5676L5.76597 17.9972C5.44538 18.2595 4.97287 18.2122 4.71057 17.8916C4.44827 17.5711 4.49553 17.0985 4.81611 16.8363L9.9577 12.6295V11.3706L4.81611 7.16386C4.49553 6.90156 4.44827 6.42904 4.71057 6.10846C4.97287 5.78787 5.44538 5.74062 5.76597 6.00292L9.9577 9.43252V3.31757ZM11.9114 11.031L11.4577 10.6598V3.85133L16.0298 7.66141L11.9114 11.031ZM11.9114 12.9691L11.4577 13.3403V20.1488L16.0298 16.3387L11.9114 12.9691Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconBluetooth;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA0yB,EAA1yB,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mrBAAmrB,KAAK,eAAc,CAAI,GAGpyB",
  "debugId": "607D6DB216F00E9D64756E2164756E21",
  "names": []
}