import ThumbsUpIcon from "#/icons/thumbs-up.svg?react"; import ThumbDownIcon from "#/icons/thumbs-down.svg?react"; import { FeedbackActionButton } from "#/components/shared/buttons/feedback-action-button"; interface FeedbackActionsProps { onPositiveFeedback: () => void; onNegativeFeedback: () => void; } export function FeedbackActions({ onPositiveFeedback, onNegativeFeedback, }: FeedbackActionsProps) { return (