diff --git a/packages/tldraw/src/components/Primitives/ToolButton/ToolButton.tsx b/packages/tldraw/src/components/Primitives/ToolButton/ToolButton.tsx index abe2d37f1..7211a74ef 100644 --- a/packages/tldraw/src/components/Primitives/ToolButton/ToolButton.tsx +++ b/packages/tldraw/src/components/Primitives/ToolButton/ToolButton.tsx @@ -10,6 +10,7 @@ export interface ToolButtonProps { onDoubleClick?: () => void disabled?: boolean isActive?: boolean + isSponsor?: boolean isToolLocked?: boolean variant?: 'icon' | 'text' | 'circle' | 'primary' children: React.ReactNode @@ -28,6 +29,7 @@ export const ToolButton = React.forwardRef( isToolLocked = false, disabled = false, isActive = false, + isSponsor = false, onKeyDown, id, ...rest @@ -38,6 +40,7 @@ export const ToolButton = React.forwardRef(