Add a button to toggle block-level nodes
A button for toggling blockquotes in your Tiptap editor.
Installation
You can add the component via Tiptap CLI (for Vite or Next.js)
npx @tiptap/cli add blockquote-button
Manual Integration
For frameworks other than Vite or Next.js, add the component manually from the open-source repository.
Import styles
This component requires you to import our styles which were added to styles/keyframe-animation.scss
and styles/_variables.scss
.
Usage
import { EditorContent, EditorContext, useEditor } from '@tiptap/react'
import { StarterKit } from '@tiptap/starter-kit'
import { BlockQuoteButton } from '@/components/tiptap-ui/blockquote-button'
import '@/components/tiptap-node/paragraph-node/paragraph-node.scss'
export default function MyEditor() {
const editor = useEditor({
immediatelyRender: false,
extensions: [StarterKit],
content: `
<blockquote>
<p>"The best way to predict the future is to invent it."</p><p>— Alan Kay</p>
</blockquote>
`,
})
return (
<EditorContext.Provider value={{ editor }}>
<div className="tiptap-button-group" data-orientation="horizontal">
<BlockQuoteButton />
</div>
<EditorContent editor={editor} role="presentation" />
</EditorContext.Provider>
)
}
Props
Name | Type | Default | Description |
---|---|---|---|
editor | Editor | null | null | The Tiptap editor instance |
hideWhenUnavailable | boolean | false | Whether the button should hide if not available |
text | string | - | Text to display alongside the icon |
Requirements
Used reference components
use-tiptap-editor
(hook)tiptap-utils
(lib)button
(primitive)block-quote-icon
(icon)