UNPKG

cyber-dice

Version:
12 lines (11 loc) 270 B
import { FC } from "react"; import { POSITIONS } from "../../types"; export interface Props { fontSize?: string; position?: POSITIONS; text?: string; textColor?: string; bgColor?: string; } declare const CubeSide: FC<Props>; export default CubeSide;