{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDices/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 IconDices: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"dices, random, roll\"><path d=\"M1.19922 12.0701L9.80914 8.05519L13.824 16.6651L5.21409 20.68L1.19922 12.0701Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M15.1992 2.76001L22.2469 5.32516L19.6818 12.3729L12.6341 9.8077L15.1992 2.76001Z\" stroke=\"currentColor\" strokeWidth=\"1.5\"/><path d=\"M18.4797 7.84205C18.2908 8.36103 17.7169 8.62861 17.1979 8.43972C16.679 8.25083 16.4114 7.67699 16.6003 7.15801C16.7892 6.63903 17.363 6.37144 17.882 6.56034C18.401 6.74923 18.6685 7.32307 18.4797 7.84205Z\" fill=\"currentColor\"/><path d=\"M6.33623 13.3518C6.56964 13.8523 6.35308 14.4473 5.85254 14.6807C5.352 14.9141 4.75702 14.6976 4.52362 14.197C4.29021 13.6965 4.50677 13.1015 5.00731 12.8681C5.50785 12.6347 6.10283 12.8513 6.33623 13.3518Z\" fill=\"currentColor\"/><path d=\"M10.3245 14.803C10.5579 15.3035 10.3414 15.8985 9.84083 16.1319C9.34029 16.3653 8.74531 16.1487 8.5119 15.6482C8.27849 15.1477 8.49505 14.5527 8.99559 14.3193C9.49613 14.0859 10.0911 14.3024 10.3245 14.803Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDices;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA6gC,EAA7gC,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,iFAAiF,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,mFAAmF,OAAO,eAAe,YAAY,MAAK,EAAE,gBAAC,OAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,CAAI,GAGvgC",
  "debugId": "80EA51F6EF7A120E64756E2164756E21",
  "names": []
}