mycrossword
Version:
React crossword component
13 lines (12 loc) • 477 B
TypeScript
import { Cell, Clue, SeparatorLocations } from '~/types';
import * as React from 'react';
interface AnagramHelperProps {
allowedHtmlTags: string[];
clue: Clue;
groupCells: Cell[];
groupSeparators: SeparatorLocations;
onClose: () => void;
style?: React.CSSProperties;
}
export default function AnagramHelper({ allowedHtmlTags, clue, groupCells, groupSeparators, onClose, style, }: AnagramHelperProps): import("react/jsx-runtime").JSX.Element;
export {};