@availity/feedback
Version:
Availity feedback with smiley faces react component.
15 lines (12 loc) • 322 B
TypeScript
export interface FeedbackProps {
appName: string;
className?: string;
prompt?: string;
color?: string;
outline?: boolean;
formProps?: object;
children?: React.ReactType;
onFeedbackSent: Function;
}
declare const Feedback: React.StatelessComponent<FeedbackProps>;
export default Feedback;