{
  "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=\"M13.9992 2.35561C13.9992 1.12899 12.4165 0.636187 11.7202 1.64595L7.83463 7.27997L3.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.6903L17.0225 15.4746L20.826 9.95958C21.3979 9.13036 20.8043 7.99992 19.797 7.99992H13.9992V2.35561Z\" fill=\"currentColor\"/><path d=\"M3.17236 14.0403L6.11873 9.76802L15.3066 17.9626L12.2782 22.3539C11.5818 23.3637 9.99918 22.8708 9.99918 21.6442V15.9999H4.20138C3.19407 15.9999 2.60048 14.8695 3.17236 14.0403Z\" 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,gBAAirB,EAAjrB,IAAqB,EAAO,UAAU,YAAW,gBAAC,OAAD,CAAM,EAAE,gZAAgZ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oLAAoL,KAAK,eAAc,CAAI,GAG3qB",
  "debugId": "8357A82A625DCEE364756E2164756E21",
  "names": []
}