{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnimatePath/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 IconAnimatePath: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"animate-path, animation, jump\"><path d=\"M18.5007 4C20.4336 4.00015 22.0007 5.5671 22.0007 7.5C22.0007 9.4329 20.4336 10.9998 18.5007 11C17.5777 11 16.7383 10.6424 16.113 10.0586C14.5618 12.0037 13.6632 14.2 13.1491 15.9824C12.8695 16.9522 12.706 17.7904 12.613 18.3828C12.5666 18.6786 12.5383 18.9125 12.5212 19.0703C12.5127 19.1492 12.507 19.2091 12.5036 19.248C12.502 19.2672 12.5004 19.2812 12.4997 19.29C12.4994 19.2944 12.4989 19.2982 12.4987 19.2998C12.4968 19.3287 12.4921 19.3569 12.487 19.3848C12.4861 19.3896 12.486 19.3946 12.4851 19.3994C12.4792 19.4284 12.4687 19.4558 12.4597 19.4834C12.4519 19.5071 12.4434 19.5301 12.4333 19.5527C12.4238 19.5742 12.4135 19.5949 12.4021 19.6152C12.3897 19.6372 12.3764 19.6582 12.362 19.6787C12.3503 19.6954 12.3389 19.7119 12.3259 19.7275C12.3092 19.7476 12.2909 19.7659 12.2722 19.7842C12.2564 19.7995 12.2404 19.8142 12.2233 19.8281C12.2044 19.8437 12.1843 19.8574 12.1638 19.8711C12.1463 19.8827 12.1295 19.8951 12.111 19.9053C12.0882 19.9178 12.064 19.9273 12.0398 19.9375C12.0187 19.9464 11.9982 19.9559 11.9763 19.9629C11.9559 19.9693 11.9349 19.9728 11.9138 19.9775C11.886 19.9838 11.8585 19.9911 11.8298 19.9941C11.8278 19.9944 11.8259 19.9959 11.8239 19.9961C11.8149 19.997 11.8056 19.9965 11.7966 19.9971C11.7872 19.9976 11.7778 19.9978 11.7683 19.998C11.7492 19.9985 11.7304 19.999 11.7116 19.998C11.7081 19.9979 11.7045 19.9983 11.7009 19.998C11.6987 19.9979 11.6962 19.9972 11.694 19.9971C11.6812 19.9961 11.6686 19.9938 11.656 19.9922C11.6157 19.9871 11.5767 19.9789 11.5388 19.9678C11.5176 19.9615 11.4977 19.9524 11.4773 19.9443C11.4504 19.9338 11.4233 19.9246 11.3982 19.9111C11.3865 19.9049 11.3762 19.8965 11.3649 19.8896C11.3358 19.8721 11.3073 19.8542 11.281 19.833C11.2657 19.8207 11.2523 19.8064 11.238 19.793C11.2175 19.7736 11.1966 19.7549 11.1784 19.7334C11.1655 19.7181 11.155 19.7009 11.1433 19.6846C11.127 19.6619 11.1101 19.6397 11.0964 19.6152C11.0857 19.5962 11.078 19.5757 11.069 19.5557C11.0583 19.5319 11.047 19.5084 11.0388 19.4834C11.026 19.4444 11.0158 19.4041 11.0095 19.3623C11.0075 19.3491 11.0059 19.3357 11.0046 19.3223C11.0045 19.3212 11.0039 19.3189 11.0036 19.3164C11.0031 19.3115 11.0027 19.304 11.0017 19.2939C10.9996 19.2734 10.9963 19.2419 10.9919 19.2012C10.9831 19.1196 10.9692 18.9988 10.9509 18.8447C10.9142 18.5361 10.8579 18.0936 10.78 17.5625C10.6238 16.4979 10.3818 15.0844 10.0378 13.6777C9.69128 12.2609 9.25228 10.8964 8.71749 9.90234C8.14885 8.84548 7.63501 8.50017 7.25069 8.5C6.86636 8.5 6.35265 8.84532 5.78389 9.90234C5.24908 10.8964 4.81011 12.2609 4.46358 13.6777C4.11955 15.0844 3.87761 16.4979 3.72139 17.5625C3.64347 18.0936 3.58716 18.5361 3.5505 18.8447C3.53219 18.9988 3.51826 19.1196 3.50948 19.2012C3.50509 19.2419 3.50182 19.2734 3.49971 19.2939C3.49869 19.304 3.49825 19.3115 3.49776 19.3164C3.49752 19.3189 3.4969 19.3211 3.49678 19.3223C3.45634 19.7343 3.0895 20.0362 2.67745 19.9961C2.26533 19.9556 1.96428 19.5889 2.0046 19.1768V19.1738C2.00476 19.1722 2.00528 19.1699 2.00557 19.167C2.00618 19.1609 2.00636 19.152 2.00753 19.1406C2.00987 19.1177 2.01362 19.0842 2.01827 19.041C2.02761 18.9542 2.04222 18.8271 2.06124 18.667C2.09928 18.3468 2.15682 17.8903 2.23702 17.3438C2.39719 16.2523 2.64757 14.7902 3.00655 13.3223C3.3631 11.8644 3.83836 10.3534 4.46358 9.19141C5.05496 8.09239 5.94767 7 7.25069 7C8.55361 7.00016 9.44646 8.09243 10.0378 9.19141C10.663 10.3534 11.1383 11.8644 11.4948 13.3223C11.6369 13.903 11.7577 14.4837 11.8669 15.04C12.472 13.1256 13.5002 10.81 15.237 8.76367C15.0851 8.37159 15.0007 7.94573 15.0007 7.5C15.0007 5.567 16.5677 4 18.5007 4Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAnimatePath;\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,gBAA8kH,EAA9kH,IAAqB,EAAO,UAAU,iCAAgC,gBAAC,OAAD,CAAM,EAAE,y+GAAy+G,KAAK,eAAc,CAAI,GAGxkH",
  "debugId": "C8B4100DA62242FF64756E2164756E21",
  "names": []
}