UNPKG

@brendonhudnell/react-hexgrid

Version:

Interactive hexagon grids with React bindings

10 lines (9 loc) 268 B
/// <reference types="react" /> export interface TextProps { children?: string; x?: string | number; y?: string | number; className?: string; } declare function Text({ children, x, y, className }: TextProps): JSX.Element; export default Text;