@kadconsulting/dry
Version:
KAD Reusable Component Library
29 lines (28 loc) • 872 B
TypeScript
import React from 'react';
import type { StoryObj } from '@storybook/react';
import type { ConfirmationDialogProps } from './ConfirmationDialogTypes';
declare const _default: {
title: string;
tags: string[];
component: React.ForwardRefExoticComponent<ConfirmationDialogProps & React.RefAttributes<HTMLDivElement>>;
argTypes: {
message: {
control: string;
description: string;
};
onConfirm: {
action: string;
description: string;
};
onCancel: {
action: string;
description: string;
};
};
};
export default _default;
type Story = StoryObj<ConfirmationDialogProps>;
export declare const Default: Story;
export declare const WithCustomMessage: Story;
export declare const WithThemeSwitch: Story;
export declare const Playground: Story;