Modal
A customizable dialog window with different sizes.
Usage
import { useState } from "react" import { Modal } from "@/components/modal" import { Button } from "@/components/ui/button" export default function MyComponent() { const [isOpen, setIsOpen] = useState(false) return ( <> <Button onClick={() => setIsOpen(true)}> Open Modal </Button> <Modal isOpen={isOpen} onClose={() => setIsOpen(false)} title="Example Modal" footer={ <> <Button variant="outline" onClick={() => setIsOpen(false)}> Cancel </Button> <Button onClick={() => setIsOpen(false)}> Confirm </Button> </> } > <p>This is the modal content.</p> </Modal> </> ) }
Props
Name
Type
Default
Description
isOpen
boolean
false
Controls whether the modal is displayed.
onClose
function
required
Function called when the modal is closed.
title
string
required
The title displayed in the modal header.
size
string
"md"
Size of the modal: "sm", "md", "lg", "xl", or "full".
footer
ReactNode
undefined
Content to display in the modal footer.