UNPKG

cyber-dice

Version:
10 lines (9 loc) 256 B
import { FC } from "react"; import { CustomFace, FACES, POSITIONS } from "../../types"; export interface Props { pointsCount: number; face: FACES | CustomFace; position?: POSITIONS; } declare const DiceFace: FC<Props>; export default DiceFace;