prosperita-dumbo-react
Version:
**Dumbo React** é uma biblioteca de componentes React que facilita a manipulação de propriedades em seus componentes. Ela fornece uma forma simples e eficiente de gerenciar e manipular props, tornando seu código mais limpo e fácil de manter.
23 lines • 685 B
TypeScript
/// <reference types="react" />
import "@fontsource/ibm-plex-sans";
export type INotificationType = {
type?: "short" | "large";
title?: string;
status: "info" | "success" | "warning" | "error";
message?: string;
actived?: boolean;
onClose?: () => void;
buttons?: {
label?: string;
onClick?: () => void;
};
children?: React.ReactNode;
noRadius?: boolean;
zindex?: string;
top?: string;
right?: string;
transparent?: string;
position?: boolean;
};
export declare const Notification: (props: INotificationType) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map