UNPKG

@brendonhudnell/react-hexgrid

Version:

Interactive hexagon grids with React bindings

10 lines (9 loc) 260 B
/// <reference types="react" /> import Point from './models/Point'; export interface PatternProps { id: string; link: string; size?: Point; } declare function Pattern({ id, link, size }: PatternProps): JSX.Element; export default Pattern;