import { TLDrawTool } from '@tldraw/core' import type { TLReactEventMap } from '@tldraw/react' import { HighlighterShape, type Shape } from '../shapes' export class HighlighterTool extends TLDrawTool { static id = 'highlighter' static shortcut = ['m'] Shape = HighlighterShape simplify = true simplifyTolerance = 0.618 }