Utility
Terminal
█
modal-demo █
Loading preview... █
█
█
█
█
█
█
█
█
█
█
█
█
█
█
█Installation
$ pnpm dlx shadcn@latest add @termcn/opentui/modal
Usage
import { Modal } from "@/components/ui/modal";<Modal open={true} onClose={() => close()} title="Welcome" width={50}>
<Text>This is a modal dialog. Press Esc to close it.</Text>
</Modal>API Reference
Modal
| Prop | Type | Default |
|---|---|---|
open | boolean | required |
onClose | () => void | required |
title | string | - |
width | number | 60 |
children | ReactNode | - |
borderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "round" |
borderColor | string | - |
paddingX | number | 1 |
paddingY | number | 0 |
titleBorderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "single" |
closeHint | string | false | "Press Esc to close" |