import { Button } from '../Button'; import { Dialog } from './Dialog'; import type { DialogProps } from './defs'; export default { component: Dialog, title: 'Overlay/Dialog', parameters: { layout: 'centered', }, }; export const Usage = (args: DialogProps) => { return ( Dialog Title Just a big text with a nice description here ); }; export const WithoutTrigger = (args: DialogProps) => { return ( Dialog Title Just a big text with a nice description here ); };