Success feedback is usually used with forms, when you want to show a feedback message on successfull form submit.
Usage is as simple as:
<SuccessFeedback
show={success}
message="Organization updated successfully"
/>
This is what it looks like
This is it's interface
interface SuccessFeedbackProps {
message: string;
description?: string;
action?: React.ReactNode;
show: boolean;
}