{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHdr/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 IconHdr: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"hdr, lighting, brightness\"><circle cx=\"11\" cy=\"12\" r=\"6\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M11 8.68262C10.3682 9.63292 10 10.7737 10 12.0004C10 13.2272 10.3682 14.3679 11 15.3182\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M13.5977 6.5C14.3331 6.17841 15.1454 6 15.9994 6C19.3131 6 21.9994 8.68629 21.9994 12C21.9994 15.3137 19.3131 18 15.9994 18C15.1454 18 14.3331 17.8216 13.5977 17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M0 12.0001H3M3.22183 19.7783L5.34315 17.657M3.22192 4.22212L5.34324 6.34344M11.0001 23V20M11.0001 4V1\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconHdr;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAsoB,EAAtoB,IAAqB,EAAO,UAAU,6BAA4B,gBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,IAAI,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,0FAA0F,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,sKAAsK,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,wGAAwG,OAAO,eAAe,YAAY,MAAK,CAAI,GAGhoB",
  "debugId": "B774FEF39D51BA9064756E2164756E21",
  "names": []
}