{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAnimation/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 IconAnimation: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"animation\"><path d=\"M15 2C11.134 2 8 5.13401 8 9C8 12.866 11.134 16 15 16C18.866 16 22 12.866 22 9C22 5.13401 18.866 2 15 2Z\" fill=\"currentColor\"/><path d=\"M6.28033 11.7803C6.57322 11.4874 6.57322 11.0126 6.28033 10.7197C5.98744 10.4268 5.51256 10.4268 5.21967 10.7197L2.21967 13.7197C1.92678 14.0126 1.92678 14.4874 2.21967 14.7803C2.51256 15.0732 2.98744 15.0732 3.28033 14.7803L6.28033 11.7803Z\" fill=\"currentColor\"/><path d=\"M8.78033 16.2803C9.07322 15.9874 9.07322 15.5126 8.78033 15.2197C8.48744 14.9268 8.01256 14.9268 7.71967 15.2197L2.21967 20.7197C1.92678 21.0126 1.92678 21.4874 2.21967 21.7803C2.51256 22.0732 2.98744 22.0732 3.28033 21.7803L8.78033 16.2803Z\" fill=\"currentColor\"/><path d=\"M13.2803 18.7803C13.5732 18.4874 13.5732 18.0126 13.2803 17.7197C12.9874 17.4268 12.5126 17.4268 12.2197 17.7197L9.21967 20.7197C8.92678 21.0126 8.92678 21.4874 9.21967 21.7803C9.51256 22.0732 9.98744 22.0732 10.2803 21.7803L13.2803 18.7803Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconAnimation;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA++B,EAA/+B,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,EAAE,2GAA2G,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,CAAI,GAGz+B",
  "debugId": "DDB9F71B5C85693E64756E2164756E21",
  "names": []
}