norma-library
Version:
Olos/Norma-DS. Design System based on Material UI, developed with TypeScript and Styled Components to create reusable and consistent components in web applications.
12 lines (11 loc) • 340 B
TypeScript
import React, { ReactElement } from 'react';
import { OnAction } from '@/types';
interface ModalStatusProps {
title: string;
text: string | ReactElement;
type: 'success' | 'info' | 'warning';
actions: OnAction[];
w?: string;
}
export declare const ModalStatus: (props: ModalStatusProps) => React.JSX.Element;
export {};