473
Sponsor

Modal

Focus-trapped overlay modal, close with Esc

Terminal

Installation

$ pnpm dlx shadcn@latest add @termcn/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

PropTypeDefault
openbooleanrequired
onClose() => voidrequired
titlestring-
widthnumber60
childrenReactNode-
borderStyle"single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic""round"
borderColorstring-
paddingXnumber1
paddingYnumber0
titleBorderStyle"single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic""single"
closeHintstring | false"Press Esc to close"