UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

12 lines (11 loc) 376 B
import { ChopLogicAlertMode, ChopLogicIconName } from '../enums'; import { ChopLogicComponentProps } from './_common'; export interface ChopLogicAlertProps extends ChopLogicComponentProps { isOpened: boolean; onClose: () => void; message: string; mode?: ChopLogicAlertMode; icon?: ChopLogicIconName; autoClose?: boolean; autoCloseDelay?: number; }