{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTrendingCircle/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 IconTrendingCircle: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"trending-circle\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM12 9.75C12 9.33579 12.3358 9 12.75 9H16.25C16.6642 9 17 9.33579 17 9.75V13.25C17 13.6642 16.6642 14 16.25 14C15.8358 14 15.5 13.6642 15.5 13.25V11.5607L13.5303 13.5303C12.6852 14.3755 11.3148 14.3755 10.4697 13.5303C10.2103 13.2709 9.78972 13.2709 9.53033 13.5303L8.03033 15.0303C7.73744 15.3232 7.26256 15.3232 6.96967 15.0303C6.67678 14.7374 6.67678 14.2626 6.96967 13.9697L8.46967 12.4697C9.31485 11.6245 10.6852 11.6245 11.5303 12.4697C11.7897 12.7291 12.2103 12.7291 12.4697 12.4697L14.4393 10.5H12.75C12.3358 10.5 12 10.1642 12 9.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTrendingCircle;\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,EAAqD,CAAC,IAAU,CAC3E,OAAO,gBAA4wB,EAA5wB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+oBAA+oB,KAAK,eAAc,CAAI,GAGtwB",
  "debugId": "ED9AAC23C35EDC0464756E2164756E21",
  "names": []
}