chop-logic-components
Version:
React UI components library for Chop Logic project
10 lines (9 loc) • 332 B
TypeScript
import { PropsWithChildren } from 'react';
import { ChopLogicComponentProps } from './_common';
import { ChopLogicIconName } from '../enums';
export interface ChopLogicDialogProps extends ChopLogicComponentProps, PropsWithChildren {
isOpened: boolean;
onClose: () => void;
title: string;
icon?: ChopLogicIconName;
}