UNPKG

@gobstones/gs-board-tsx

Version:
10 lines (9 loc) 350 B
import React from "react"; declare type StoneProps = { color: string; amount: number | string; rightClick: (event: React.MouseEvent<HTMLDivElement>) => any; leftClick: (event: React.MouseEvent<HTMLDivElement>) => any; }; declare function Stone({ color, leftClick, amount, rightClick }: StoneProps): JSX.Element; export default Stone;