geoiq-frontend-ui-kit
Version:
This project is a UI kit for GeoIQ's frontend. It's built with React, TypeScript, and Vite.
16 lines (15 loc) • 424 B
TypeScript
import { ToastProps } from './toast-components';
export type ToasterToastProps = ToastProps & {
id: string;
title: React.ReactNode;
description: React.ReactNode;
action?: {
title: string;
method: VoidFunction;
altText: string;
};
} & ToastIconProps;
export type ToastIconProps = {
icon?: 'success' | 'danger' | 'warning' | 'info';
};
//# sourceMappingURL=toast.types.d.ts.map