UNPKG

react-chessboard

Version:
10 lines (9 loc) 307 B
import { SquareDataType } from './types.js'; type SquareProps = { children?: React.ReactNode; squareId: SquareDataType['squareId']; isLightSquare: SquareDataType['isLightSquare']; isOver: boolean; }; export declare const Square: import("react").NamedExoticComponent<SquareProps>; export {};