{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnimationEase/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 IconAnimationEase: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"animation-ease\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.9986 3.70415C21.024 4.11759 20.7093 4.47328 20.2959 4.49862C16.7086 4.71846 15.0079 5.75394 14.1054 7.01958C13.1578 8.34844 12.9567 10.084 12.7459 12.0789C12.7426 12.1101 12.7393 12.1414 12.736 12.1727C12.5376 14.0523 12.3139 16.1714 11.1159 17.8513C9.85294 19.6226 7.63464 20.7634 3.7959 20.9986C3.38246 21.024 3.02677 20.7093 3.00143 20.2959C2.97609 19.8825 3.29071 19.5268 3.70415 19.5014C7.29144 19.2816 8.99215 18.2461 9.89464 16.9805C10.8422 15.6516 11.0433 13.916 11.2542 11.9212C11.2575 11.89 11.2608 11.8587 11.2641 11.8273C11.4625 9.94774 11.6862 7.82868 12.8841 6.1487C14.1471 4.37748 16.3654 3.23668 20.2041 3.00143C20.6176 2.97609 20.9733 3.29071 20.9986 3.70415Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAnimationEase;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAuyB,EAAvyB,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2qBAA2qB,KAAK,eAAc,CAAI,GAGjyB",
  "debugId": "6C215E9B6FF61F1B64756E2164756E21",
  "names": []
}