zzz / frontend /src /components /shared /buttons /feedback-action-button.tsx
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
419 Bytes
interface FeedbackActionButtonProps {
testId?: string;
onClick: () => void;
icon: React.ReactNode;
}
export function FeedbackActionButton({
testId,
onClick,
icon,
}: FeedbackActionButtonProps) {
return (
<button
type="button"
data-testid={testId}
onClick={onClick}
className="button-base p-1 hover:bg-neutral-500"
>
{icon}
</button>
);
}