{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRecraft/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 IconRecraft: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"recraft\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.4741 2.5C14.7034 2.50018 18.1315 5.56109 18.1315 9.33619L18.1307 9.33861C18.1305 13.1014 14.7225 16.1559 10.512 16.1732H18.2799L21.268 21.5H13.4718L10.4813 16.1732C10.4797 16.1732 10.4781 16.174 10.4765 16.174V21.5H2.71094L5.4288 11.9992H8.02807C7.89343 11.1806 7.81914 10.2803 7.81912 9.33619C7.81912 5.56097 9.00858 2.5 10.4741 2.5ZM10.4741 3.75123C9.70745 3.75123 9.08568 6.25324 9.08568 9.33619C9.08573 12.4198 9.70663 14.9203 10.4749 14.9203C11.2421 14.9196 11.8632 12.4193 11.8632 9.33619C11.8632 6.25374 11.2421 3.75206 10.4741 3.75123Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconRecraft;\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,gBAA2pB,EAA3pB,IAAqB,EAAO,UAAU,WAAU,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,siBAAsiB,KAAK,eAAc,CAAI,GAGrpB",
  "debugId": "17BC25A52DB3B0F564756E2164756E21",
  "names": []
}