It's a widget that allows you to roll dice. Available props: - mainColor: main color of dice (default white). Supports hex (i. e. "#FF0000") - dotsColor: dots color (default black). Supports hex (i. e. "#FF0000") - borderColor: border color (default black). Supports hex (i. e. "#FF0000") - diceCount: count of dice to be rolled (default 2). - diceResult: if you already have your own dice roll results, you can pass them as an array, i. e. [1, 5, 2]. This will roll 3 dice with pre-defined results 1, 5, and 2. If this prop passed, props.diceCount is ignored. - callback: function to be called after dice were rolled. Must accept one argument, which is an array of numbers. For example: ```js function callback(diceResults) { console.log("Sum: ", diceResults.reduce((partialSum, a) => partialSum + a, 0)) }