@neynar/ui
Version:
React UI component library built on shadcn/ui and Tailwind CSS
41 lines (30 loc) • 756 B
Markdown
# DialogTitle
**Type**: component
DialogTitle - The main heading of the dialog Provides the accessible name for the dialog. Should clearly describe the dialog's purpose or the action being performed.
## JSX Usage
```jsx
import { DialogTitle } from '@neynar/ui';
<DialogTitle
asChild={true}
className="value"
>
{/* Your content here */}
</DialogTitle>
```
## Component Props
### asChild
- **Type**: `boolean`
- **Required**: No
- **Description**: No description available
### className
- **Type**: `string`
- **Required**: No
- **Description**: No description available
### children
- **Type**: `React.ReactNode`
- **Required**: No
- **Description**: No description available
## Examples
```tsx
<DialogTitle>Delete Account</DialogTitle>
```