> ## Documentation Index
> Fetch the complete documentation index at: https://velt-v6-0-0-beta-3.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Text Comment Toolbar Wireframes

> Wireframe components for building custom Text Comment Toolbar interfaces with maximum flexibility.

<Note>
  We recommend that you familiarize yourselves with [UI Customization Concepts](/ui-customization/overview) before attempting to modify any components.
</Note>

## VeltTextCommentToolbarWireframe

<img src="https://mintcdn.com/velt-v6-0-0-beta-3/W2cOBZMCmVSZSMx6/images/customization/comments/text-comment-toolbar/comment-text-toolbar-overview.png?fit=max&auto=format&n=W2cOBZMCmVSZSMx6&q=85&s=88d3b32fc36a64ef537d34b74f8c004a" alt="" width="1280" height="370" data-path="images/customization/comments/text-comment-toolbar/comment-text-toolbar-overview.png" />

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltWireframe>
        <VeltTextCommentToolbarWireframe>
            <VeltTextCommentToolbarWireframe.CommentAnnotation />
            <VeltTextCommentToolbarWireframe.Divider />
            <VeltTextCommentToolbarWireframe.Copywriter />
            <VeltTextCommentToolbarWireframe.Generic />
        </VeltTextCommentToolbarWireframe>
    </VeltWireframe>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```html theme={null}
    <velt-wireframe style="display:none;">
        <velt-text-comment-toolbar-wireframe>
            <velt-text-comment-toolbar-comment-annotation-wireframe></velt-text-comment-toolbar-comment-annotation-wireframe>
            <velt-text-comment-toolbar-divider-wireframe></velt-text-comment-toolbar-divider-wireframe>
            <velt-text-comment-toolbar-copywriter-wireframe></velt-text-comment-toolbar-copywriter-wireframe>
            <velt-text-comment-toolbar-generic-wireframe></velt-text-comment-toolbar-generic-wireframe>
        </velt-text-comment-toolbar-wireframe>
    </velt-wireframe>
    ```
  </Tab>
</Tabs>

## CommentAnnotation

<img src="https://mintcdn.com/velt-v6-0-0-beta-3/W2cOBZMCmVSZSMx6/images/customization/comments/text-comment-toolbar/comment-text-toolbar-comment-tool.png?fit=max&auto=format&n=W2cOBZMCmVSZSMx6&q=85&s=01f62e88eef6d8653bfccd4f8a1c1a96" alt="" width="1280" height="370" data-path="images/customization/comments/text-comment-toolbar/comment-text-toolbar-comment-tool.png" />

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltWireframe>
        <VeltTextCommentToolbarWireframe.CommentAnnotation />
    </VeltWireframe>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```html theme={null}
    <velt-wireframe style="display:none;">
        <velt-text-comment-toolbar-comment-annotation-wireframe></velt-text-comment-toolbar-comment-annotation-wireframe>
    </velt-wireframe>
    ```
  </Tab>
</Tabs>

## Divider

<img src="https://mintcdn.com/velt-v6-0-0-beta-3/W2cOBZMCmVSZSMx6/images/customization/comments/text-comment-toolbar/comment-text-toolbar-divider.png?fit=max&auto=format&n=W2cOBZMCmVSZSMx6&q=85&s=f67bda91f48db796b8d86240360cec75" alt="" width="1280" height="370" data-path="images/customization/comments/text-comment-toolbar/comment-text-toolbar-divider.png" />

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltWireframe>
        <VeltTextCommentToolbarWireframe.Divider />
    </VeltWireframe>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```html theme={null}
    <velt-wireframe style="display:none;">
        <velt-text-comment-toolbar-divider-wireframe></velt-text-comment-toolbar-divider-wireframe>
    </velt-wireframe>
    ```
  </Tab>
</Tabs>

## Copywriter

<img src="https://mintcdn.com/velt-v6-0-0-beta-3/W2cOBZMCmVSZSMx6/images/customization/comments/text-comment-toolbar/comment-text-toolbar-copywriter.png?fit=max&auto=format&n=W2cOBZMCmVSZSMx6&q=85&s=23a312fd33314b4d06aa6b0b01e2de04" alt="" width="1280" height="370" data-path="images/customization/comments/text-comment-toolbar/comment-text-toolbar-copywriter.png" />

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltWireframe>
        <VeltTextCommentToolbarWireframe.Copywriter />
    </VeltWireframe>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```html theme={null}
    <velt-wireframe style="display:none;">
        <velt-text-comment-toolbar-copywriter-wireframe></velt-text-comment-toolbar-copywriter-wireframe>
    </velt-wireframe>
    ```
  </Tab>
</Tabs>

## Generic

<img src="https://mintcdn.com/velt-v6-0-0-beta-3/W2cOBZMCmVSZSMx6/images/customization/comments/text-comment-toolbar/comment-text-toolbar-generic.png?fit=max&auto=format&n=W2cOBZMCmVSZSMx6&q=85&s=f3b304bc3ebe3728b9b29740cd6f4812" alt="" width="1280" height="370" data-path="images/customization/comments/text-comment-toolbar/comment-text-toolbar-generic.png" />

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltWireframe>
        <VeltTextCommentToolbarWireframe.Generic />
    </VeltWireframe>
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```html theme={null}
    <velt-wireframe style="display:none;">
        <velt-text-comment-toolbar-generic-wireframe></velt-text-comment-toolbar-generic-wireframe>
    </velt-wireframe>
    ```
  </Tab>
</Tabs>

## Styling

### Disable ShadowDOM

* By default, ShadowDOM is used to ensure that your app's CSS does not interfere with the styling of the SDK components.
* Disable the shadow dom to apply your custom CSS to the component.

Default: `true`

<Tabs>
  <Tab title="React / Next.js">
    ```jsx theme={null}
    <VeltComments shadowDom={false} textCommentToolbarShadowDom={false} />
    ```
  </Tab>

  <Tab title="Other Frameworks">
    ```jsx theme={null}
    <velt-comments shadow-dom="false" text-comment-toolbar-shadow-dom="false"></velt-comments>
    ```
  </Tab>
</Tabs>

### Dark Mode

By default, all components are in Light Mode, but there are several properties and methods to enable Dark Mode.

Default: `false`

<Tabs>
  <Tab title="React / Next.js">
    **Using Props:**

    ```js theme={null}
    <VeltComments textCommentToolbarDarkMode={true} />
    ```

    **Using API:**

    ```jsx theme={null}
    const commentElement = client.getCommentElement();
    commentElement.enableDarkMode();
    commentElement.disableDarkMode();
    ```
  </Tab>

  <Tab title="Other Frameworks">
    **Using Props:**

    ```js theme={null}
    <velt-comments text-comment-toolbar-dark-mode="true"></velt-comments>
    ```

    **Using API:**

    ```jsx theme={null}
    const commentElement = Velt.getCommentElement();
    commentElement.enableDarkMode();
    commentElement.disableDarkMode();
    ```
  </Tab>
</Tabs>
