{
  "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.6333 14.6938C18.0844 15.0446 17.4525 15.2557 16.7935 15.2973L15.4282 15.3833C14.8526 15.4196 14.3089 15.6649 13.9009 16.0727L9.28956 20.684C8.18441 21.789 6.39276 21.7891 5.28761 20.684L3.31495 18.7114C2.2102 17.6062 2.21004 15.8145 3.31495 14.7094L7.92628 10.0981C8.33413 9.69007 8.5795 9.14654 8.61574 8.57076L8.70167 7.20552C8.74332 6.54639 8.95327 5.91373 9.30421 5.3647L18.6333 14.6938ZM12.0298 11.9692C11.737 11.6767 11.2621 11.6768 10.9693 11.9692L9.46925 13.4692C9.17654 13.762 9.17666 14.2369 9.46925 14.5297C9.76211 14.8226 10.2369 14.8225 10.5298 14.5297L12.0298 13.0297C12.3223 12.7368 12.3226 12.262 12.0298 11.9692Z\" fill=\"currentColor\"/><path d=\"M11.4751 3.0649C12.5802 1.96017 14.373 1.96011 15.478 3.0649L20.9341 8.52095C22.0392 9.62601 22.0389 11.4187 20.9341 12.5239L19.7593 13.6987L10.3003 4.2397L11.4751 3.0649Z\" 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,gBAA+8B,EAA/8B,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4nBAA4nB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8KAA8K,KAAK,eAAc,CAAI,GAGz8B",
  "debugId": "B064A0F531F310AC64756E2164756E21",
  "names": []
}