UNPKG

cyber-dice

Version:
11 lines (10 loc) 238 B
import { FC } from "react"; import "./style.scss"; export interface Props { randomNumber: number; isAnimation: boolean; animationEndHandler: () => void; size?: number; } declare const Dice: FC<Props>; export default Dice;