{
  "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=\"M10.4185 2.07082C10.682 1.94738 10.9931 1.98754 11.2167 2.17384L17.3834 7.31273C17.5553 7.45598 17.6542 7.66851 17.6532 7.89228C17.6522 8.11604 17.5513 8.32767 17.3782 8.46937L13.0629 12L17.3782 15.5307C17.5513 15.6724 17.6522 15.884 17.6532 16.1077C17.6542 16.3315 17.5553 16.544 17.3834 16.6873L11.2167 21.8262C10.9931 22.0125 10.682 22.0526 10.4185 21.9292C10.1549 21.8058 9.98657 21.541 9.98657 21.25V14.517L6.07261 17.7194C5.75202 17.9817 5.27951 17.9344 5.01721 17.6138C4.75492 17.2932 4.80217 16.8207 5.12275 16.5584L9.98657 12.5789V11.4211L5.12275 7.44159C4.80217 7.17929 4.75492 6.70678 5.01721 6.38619C5.27951 6.06561 5.75202 6.01836 6.07261 6.28065L9.98657 9.48298V2.75001C9.98657 2.459 10.1549 2.19425 10.4185 2.07082ZM11.8785 11.031L11.4866 10.7103V4.35129L15.7253 7.88359L11.8785 11.031ZM11.8785 12.9691L11.4866 13.2898V19.6487L15.7253 16.1164L11.8785 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,gBAAo+B,EAAp+B,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,62BAA62B,KAAK,eAAc,CAAI,GAG99B",
  "debugId": "6C26FCE74F3218F564756E2164756E21",
  "names": []
}