{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconNoFlash/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 IconNoFlash: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"no-flash\"><path d=\"M14 1.75005C14 1.42403 13.7894 1.13535 13.4789 1.03584C13.1685 0.936333 12.8293 1.04879 12.6398 1.31407L8.16623 7.57572L3.24922 3.19028C2.94009 2.91457 2.46599 2.94166 2.19029 3.25079C1.91458 3.55991 1.94167 4.03401 2.2508 4.30972L20.7508 20.8097C21.0599 21.0854 21.534 21.0583 21.8097 20.7492C22.0854 20.4401 22.0583 19.966 21.7492 19.6903L16.6616 15.1526L20.8634 9.18167C21.0245 8.95269 21.0447 8.65303 20.9157 8.40452C20.7867 8.15601 20.53 8.00005 20.25 8.00005H14V1.75005Z\" fill=\"currentColor\"/><path d=\"M3.13975 14.6114L6.41268 10.0302L14.9242 17.6215L11.3634 22.6817C11.1752 22.9491 10.8354 23.0638 10.5236 22.9651C10.2119 22.8664 10 22.5771 10 22.2501V15.7973H3.75001C3.46906 15.7973 3.21167 15.6403 3.08312 15.3905C2.95457 15.1407 2.97643 14.84 3.13975 14.6114Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconNoFlash;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAo1B,EAAp1B,IAAqB,EAAO,UAAU,YAAW,gBAAC,OAAD,CAAM,EAAE,+dAA+d,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wQAAwQ,KAAK,eAAc,CAAI,GAG90B",
  "debugId": "977526908CD0C76D64756E2164756E21",
  "names": []
}