{
  "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.85126C9.9577 2.5795 11.441 1.88476 12.418 2.69892L16.9901 6.509C17.7139 7.11222 17.7089 8.2256 16.9797 8.82227L13.0958 12L16.9797 15.1777C17.7089 15.7743 17.7139 16.8877 16.9901 17.4909L12.418 21.301C11.441 22.1152 9.9577 21.4204 9.9577 20.1487V14.5675L5.76597 17.9971C5.44538 18.2594 4.97287 18.2122 4.71057 17.8916C4.44827 17.571 4.49553 17.0985 4.81611 16.8362L9.9577 12.6294V11.3705L4.81611 7.16378C4.49553 6.90148 4.44827 6.42896 4.71057 6.10838C4.97287 5.7878 5.44538 5.74054 5.76597 6.00284L9.9577 9.43244V3.85126ZM11.9114 11.0309L11.4577 10.6597V3.85126L16.0298 7.66133L11.9114 11.0309ZM11.9114 12.969L11.4577 13.3402V20.1487L16.0298 16.3386L11.9114 12.969Z\" 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,gBAA6xB,EAA7xB,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sqBAAsqB,KAAK,eAAc,CAAI,GAGvxB",
  "debugId": "2747B304730593BC64756E2164756E21",
  "names": []
}