apphouse
Version:
Component library for React that uses observable state management and theme-able components.
18 lines (17 loc) • 614 B
TypeScript
import * as React from 'react';
import { FeedbackStyle } from './feedback.styles';
import { FeedbackPositionOptions, FeedbackTypeOptions, FeedbackVariantType } from '../../../models/Feedback';
export interface FeedbackProps {
message?: React.ReactNode;
details?: React.ReactNode;
variant?: FeedbackVariantType;
open: boolean;
onClose: () => void;
zIndex?: number;
styleOverwrites?: FeedbackStyle;
type?: FeedbackTypeOptions;
position?: FeedbackPositionOptions;
dismissButtonLabel?: string;
showLoader?: boolean;
}
export declare const Feedback: React.FC<FeedbackProps>;