{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDiamond/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 IconDiamond: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"diamond, pro, premium\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M6.03024 3.97197C6.72008 3.34647 7.61798 3 8.54918 3H15.4483C16.3795 3 17.2774 3.34647 17.9672 3.97197L21.6687 7.32827C23.2563 8.76776 23.3168 11.2426 21.8014 12.7579L14.6504 19.909C13.1859 21.3735 10.8115 21.3735 9.34708 19.909L2.19601 12.7579C0.680677 11.2426 0.741167 8.76776 2.32873 7.32827L6.03024 3.97197ZM9.02906 7.21967C9.32195 7.51256 9.32195 7.98744 9.02906 8.28033L7.30939 10L9.02906 11.7197C9.32195 12.0126 9.32195 12.4874 9.02906 12.7803C8.73616 13.0732 8.26129 13.0732 7.9684 12.7803L5.7184 10.5303C5.4255 10.2374 5.4255 9.76256 5.7184 9.46967L7.9684 7.21967C8.26129 6.92678 8.73616 6.92678 9.02906 7.21967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDiamond;\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,gBAAmvB,EAAnvB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gnBAAgnB,KAAK,eAAc,CAAI,GAG7uB",
  "debugId": "4708E60655E644A464756E2164756E21",
  "names": []
}