{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnimationEaseOut/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 IconAnimationEaseOut: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"animation-ease-out\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.9831 3.59095C21.071 3.99574 20.814 4.39511 20.4092 4.48297C15.8382 5.47512 12.3634 7.21036 9.78695 9.78682C7.21048 12.3633 5.47524 15.8381 4.48309 20.4091C4.39523 20.8139 3.99586 21.0708 3.59107 20.983C3.18628 20.8951 2.92936 20.4957 3.01722 20.0909C4.05329 15.3176 5.89589 11.5566 8.72629 8.72616C11.5567 5.89577 15.3177 4.05317 20.0911 3.0171C20.4959 2.92924 20.8952 3.18616 20.9831 3.59095Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAnimationEaseOut;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAAghB,EAAhhB,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gZAAgZ,KAAK,eAAc,CAAI,GAG1gB",
  "debugId": "74E681AE7FD6970064756E2164756E21",
  "names": []
}