> ## Documentation Index
> Fetch the complete documentation index at: https://velt-mintlify-91561e57.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-mintlify-91561e57/ZKTbk1IBGmS30_BD/images/customization/comments/text-comment-toolbar/comment-text-toolbar-overview.png?fit=max&auto=format&n=ZKTbk1IBGmS30_BD&q=85&s=986768e7a36e536900bc1c999156c664" 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-mintlify-91561e57/ZKTbk1IBGmS30_BD/images/customization/comments/text-comment-toolbar/comment-text-toolbar-comment-tool.png?fit=max&auto=format&n=ZKTbk1IBGmS30_BD&q=85&s=f1fe098bdfe3851b0d9a0f44bdb62bce" 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-mintlify-91561e57/ZKTbk1IBGmS30_BD/images/customization/comments/text-comment-toolbar/comment-text-toolbar-divider.png?fit=max&auto=format&n=ZKTbk1IBGmS30_BD&q=85&s=b61359e3c9a7d0cc171942feb322a7d2" 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-mintlify-91561e57/ZKTbk1IBGmS30_BD/images/customization/comments/text-comment-toolbar/comment-text-toolbar-copywriter.png?fit=max&auto=format&n=ZKTbk1IBGmS30_BD&q=85&s=3959ab92fdbd2d536f05bb31119187db" 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-mintlify-91561e57/ZKTbk1IBGmS30_BD/images/customization/comments/text-comment-toolbar/comment-text-toolbar-generic.png?fit=max&auto=format&n=ZKTbk1IBGmS30_BD&q=85&s=a4b33fd8e3ac5dea8058b4f2a2461c67" 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>
