Skip to content
Harness Design System

Dialog

The Dialog component provides a flexible UI element for displaying overlaid content, often used for dialogs or modals. It is composed of several subcomponents such as Dialog.Header, Dialog.Footer, Dialog.Title, and Dialog.Description to offer a structured and customizable interface.

Usage

import { Dialog } from '@harnessio/ui/components'
return (
<Dialog.Root>
<Dialog.Trigger asChild>
<Button>Open Dialog</Button>
</Dialog.Trigger>
<Dialog.Content>
<Dialog.Header>
<Dialog.Title>Dialog Title</Dialog.Title>
<Dialog.Description>This is the dialog description.</Dialog.Description>
</Dialog.Header>
<p>Dialog content goes here.</p>
<Dialog.Footer>
<Button>Footer Action</Button>
</Dialog.Footer>
</Dialog.Content>
</Dialog.Root>
)

Anatomy

All parts of the Dialog component can be imported and composed as required.

<Dialog.Root>
<Dialog.Trigger>
<Button>Open Dialog</Button>
</Dialog.Trigger>
<Dialog.Content>
<Dialog.Header>
<Dialog.Title>Dialog Title</Dialog.Title>
<Dialog.Description>This is the dialog description.</Dialog.Description>
</Dialog.Header>
<p>Dialog content goes here.</p>
<Dialog.Footer>
<Button>Footer Action</Button>
</Dialog.Footer>
</Dialog.Content>
</Dialog.Root>

API Reference

Root

The Root component serves as the main container for all dialog elements.

PropRequiredDefaultType
childrentrueReactNode
openfalseboolean
defaultOpenfalseboolean
onOpenChangefalse(open: boolean) => void
modalfalseboolean

Trigger

The Trigger component is used to open the dialog.

<Dialog.Trigger>
<Button>Open Dialog</Button>
</Dialog.Trigger>
PropRequiredDefaultType
childrentrueReactNode
asChildfalseboolean

Content

The Content component defines the main content area of the dialog.

<Dialog.Content>
<Dialog.Header>
<Dialog.Title>Dialog Title</Dialog.Title>
<Dialog.Description>This is the dialog description.</Dialog.Description>
</Dialog.Header>
<p>Dialog content goes here.</p>
<Dialog.Footer>
<Button>Footer Action</Button>
</Dialog.Footer>
</Dialog.Content>
PropRequiredDefaultType
childrentrueReactNode
classNamefalsestring
onOverlayClickfalse() => void
forceMountfalseboolean

The Header component is used to define the header section of the dialog.

<Dialog.Header>
<Dialog.Title>Dialog Title</Dialog.Title>
<Dialog.Description>This is the dialog description.</Dialog.Description>
</Dialog.Header>
PropRequiredDefaultType
childrentrueReactNode
classNamefalsestring

The Footer component is used to define the footer section of the dialog.

<Dialog.Footer>
<Button>Footer Action</Button>
</Dialog.Footer>
PropRequiredDefaultType
childrentrueReactNode
classNamefalsestring

Title

The Title component displays the title of the dialog.

<Dialog.Title>Dialog Title</Dialog.Title>
PropRequiredDefaultType
childrentrueReactNode
classNamefalsestring

Description

The Description component displays the description of the dialog.

<Dialog.Description>This is the dialog description.</Dialog.Description>
PropRequiredDefaultType
childrentrueReactNode
classNamefalsestring