{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShimmer/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 IconShimmer: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"shimmer, waves, shader, effect\"><path d=\"M12 2.75C12 3.26778 12 3.52666 11.9704 3.76851C11.8444 4.79878 11.3229 5.73974 10.516 6.39261C10.3266 6.54587 10.1071 6.68308 9.668 6.9575L6.332 9.0425C5.89292 9.31692 5.67339 9.45413 5.48397 9.60739C4.67708 10.2603 4.15556 11.2012 4.02957 12.2315C4 12.4733 4 12.7322 4 13.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M16 6.75C16 7.26778 16 7.52666 15.9704 7.76851C15.8444 8.79878 15.3229 9.73974 14.516 10.3926C14.3266 10.5459 14.1071 10.6831 13.668 10.9575L10.332 13.0425C9.89292 13.3169 9.67339 13.4541 9.48397 13.6074C8.67708 14.2603 8.15556 15.2012 8.02957 16.2315C8 16.4733 8 16.7322 8 17.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M20 10.75C20 11.2678 20 11.5267 19.9704 11.7685C19.8444 12.7988 19.3229 13.7397 18.516 14.3926C18.3266 14.5459 18.1071 14.6831 17.668 14.9575L14.332 17.0425C13.8929 17.3169 13.6734 17.4541 13.484 17.6074C12.6771 18.2603 12.1556 19.2012 12.0296 20.2315C12 20.4733 12 20.7322 12 21.25\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconShimmer;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA8mC,EAA9mC,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,sRAAsR,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,0RAA0R,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,6RAA6R,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,GAGxmC",
  "debugId": "598EEB0B792BE74E64756E2164756E21",
  "names": []
}