{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconRemixCircle/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 IconRemixCircle: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"remix-circle, mix, new-try\"><path d=\"M3.31006 10.9706C3.81954 6.62321 7.51592 3.25 12.0001 3.25C15.1315 3.25 17.8786 4.89484 19.4247 7.36765L19.5 7.5M20.6902 13.0294C20.1807 17.3768 16.4844 20.75 12.0001 20.75C8.7953 20.75 5.99288 19.027 4.46867 16.4568\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.25 15.75H3.75V20.25\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M15.75 8.25L20.25 8.25002V3.75\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M8.5 11.9999H15.5M12.0004 8.5V15.5\" stroke=\"currentColor\" strokeWidth=\"1.5\"/></CentralIconBase>;\n};\n\nexport default IconRemixCircle;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAmkB,EAAnkB,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,2NAA2N,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,yBAAyB,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,iCAAiC,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,qCAAqC,OAAO,eAAe,YAAY,MAAK,CAAI,GAG7jB",
  "debugId": "E070716FCE4DEEEF64756E2164756E21",
  "names": []
}