@servicetitan/assist-ui
Version:
ServiceTitan Atlas UI Components
14 lines • 517 B
TypeScript
import { FC } from 'react';
import { MessageProps } from './message-interface';
export interface SmallActionProps extends MessageProps {
recommendationId: string;
message: string;
description?: string;
buttonText?: string;
onReject: (recommendationId: string) => void | undefined;
onAccept: (recommendationId: string) => void | undefined;
buttonDisabled?: boolean;
className?: string;
}
export declare const SmallAction: FC<SmallActionProps>;
//# sourceMappingURL=small-action.d.ts.map