{
  "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.85796 3.22427C6.99897 3.08081 7.1917 3 7.39286 3H16.6071C16.8083 3 17.001 3.08081 17.142 3.22427L23.2849 9.47427C23.5735 9.76788 23.5714 10.2392 23.2803 10.5303L12.5303 21.2803C12.2374 21.5732 11.7626 21.5732 11.4697 21.2803L0.71967 10.5303C0.428566 10.2392 0.426528 9.76788 0.715105 9.47427L6.85796 3.22427ZM9.03033 7.21967C9.32322 7.51256 9.32322 7.98744 9.03033 8.28033L7.31066 10L9.03033 11.7197C9.32322 12.0126 9.32322 12.4874 9.03033 12.7803C8.73744 13.0732 8.26256 13.0732 7.96967 12.7803L5.71967 10.5303C5.42678 10.2374 5.42678 9.76256 5.71967 9.46967L7.96967 7.21967C8.26256 6.92678 8.73744 6.92678 9.03033 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,gBAAyvB,EAAzvB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,snBAAsnB,KAAK,eAAc,CAAI,GAGnvB",
  "debugId": "8E1AB7C53862BABA64756E2164756E21",
  "names": []
}