mycrossword
Version:
React crossword component
10 lines (9 loc) • 334 B
TypeScript
interface ClueDisplayProps {
allowedHtmlTags: string[];
className?: string;
clue: string;
onClick: (word: string) => void;
splitWords?: boolean;
}
export default function ClueDisplay({ allowedHtmlTags, className, clue, onClick, splitWords, }: ClueDisplayProps): import("react/jsx-runtime").JSX.Element;
export {};