{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTorch/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 IconTorch: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"torch, flashlight, inspect\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.6982 14.7587L18.4531 15.0048C18.3239 15.1339 18.1519 15.2121 17.9697 15.2236L14.5351 15.4384L7.81926 22.1552C7.67866 22.2958 7.48783 22.3749 7.28899 22.3749C7.09016 22.3749 6.89935 22.2958 6.75872 22.1552L1.84465 17.2411C1.55179 16.9483 1.55177 16.4735 1.84465 16.1806L8.56047 9.4638L8.7763 6.03021L8.7968 5.89545C8.82952 5.76419 8.8982 5.64365 8.99505 5.54681L9.24016 5.30072L18.6982 14.7587ZM12.0302 11.9697C11.7373 11.6768 11.2625 11.6768 10.9697 11.9697L9.46965 13.4697C9.17676 13.7626 9.17676 14.2373 9.46965 14.5302C9.76256 14.823 10.2374 14.8231 10.5302 14.5302L12.0302 13.0302C12.323 12.7374 12.323 12.2626 12.0302 11.9697Z\" fill=\"currentColor\"/><path d=\"M12.9462 1.59466C13.2391 1.30178 13.7149 1.30177 14.0077 1.59466L22.4052 9.99212C22.5458 10.1328 22.6249 10.3245 22.6249 10.5234C22.6248 10.7221 22.5457 10.9131 22.4052 11.0536L19.7587 13.6982L10.3007 4.24017L12.9462 1.59466Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTorch;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAugC,EAAvgC,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8nBAA8nB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oOAAoO,KAAK,eAAc,CAAI,GAGjgC",
  "debugId": "1D40A36DB0210DCB64756E2164756E21",
  "names": []
}