@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 352 B
TypeScript
import React, { CSSProperties } from 'react';
export type Props = {
className?: string;
style?: CSSProperties;
reason: string;
reasonText: string;
postId?: number;
onClose?: () => void;
};
export declare const SubmitReportForm: ({ className, style, reason, reasonText, onClose, postId, }: Props) => React.JSX.Element;