{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnimationEaseIn/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 IconAnimationEaseIn: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"animation-ease-in\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.4092 3.0171C20.814 3.10496 21.071 3.50433 20.9831 3.90912C19.947 8.68244 18.1044 12.4435 15.274 15.2739C12.4436 18.1043 8.68257 19.9469 3.90924 20.983C3.50445 21.0708 3.10508 20.8139 3.01722 20.4091C2.92936 20.0043 3.18628 19.605 3.59107 19.5171C8.16208 18.5249 11.6369 16.7897 14.2134 14.2132C16.7898 11.6368 18.5251 8.16196 19.5172 3.59095C19.6051 3.18616 20.0045 2.92924 20.4092 3.0171Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAnimationEaseIn;\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,EAAsD,CAAC,IAAU,CAC5E,OAAO,gBAA2gB,EAA3gB,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4YAA4Y,KAAK,eAAc,CAAI,GAGrgB",
  "debugId": "7321D085A57197B364756E2164756E21",
  "names": []
}