{
  "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.698 14.7577C18.3939 15.0468 17.9986 15.2223 17.5789 15.2489L14.6453 15.4334C14.5748 15.4379 14.5077 15.4685 14.4578 15.5184L8.55543 21.4207C7.85656 22.1195 6.72322 22.1192 6.02418 21.4207L2.58082 17.9774C1.88189 17.2784 1.88194 16.1452 2.58082 15.4461L8.48316 9.54379C8.53294 9.49398 8.56357 9.42655 8.56812 9.35629L8.75269 6.42269C8.77917 6.00278 8.95367 5.60681 9.24293 5.30257L18.698 14.7577ZM12.031 11.9705C11.7381 11.6777 11.2634 11.6777 10.9705 11.9705L9.47047 13.4705C9.1777 13.7634 9.17761 14.2382 9.47047 14.5311C9.76336 14.8235 10.2383 14.8237 10.531 14.5311L12.031 13.0311C12.3237 12.7384 12.3234 12.2635 12.031 11.9705Z\" fill=\"currentColor\"/><path d=\"M12.2117 2.33089C12.9107 1.63191 14.0449 1.63187 14.7439 2.33089L21.6707 9.25765C22.3692 9.95671 22.3695 11.091 21.6707 11.7899L19.7605 13.6991L10.3015 4.24007L12.2117 2.33089Z\" 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,gBAAs9B,EAAt9B,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8nBAA8nB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mLAAmL,KAAK,eAAc,CAAI,GAGh9B",
  "debugId": "560105B661160AFE64756E2164756E21",
  "names": []
}