import { Meta, StoryObj } from "@storybook/react"; import { ConfirmationModal } from "."; const meta: Meta = { title: "Overlays/Modals/ConfirmationModal", component: ConfirmationModal, parameters: { docs: { story: { inline: false, height: "400px", }, }, }, }; export default meta; type Story = StoryObj; export const Primary: Story = { args: { isOpen: true, title: "Delete Post?", children: "Are you sure you want to delete this post? This action cannot be undone.", confirmText: "Delete", centered: true, }, };