"use client"; import { motion } from "framer-motion"; import { X, Heart } from "lucide-react"; import { SwipeDirection } from "@/types"; interface ActionButtonsProps { onAction: (direction: SwipeDirection) => void; disabled: boolean; } export default function ActionButtons({ onAction, disabled, }: ActionButtonsProps) { return (