import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; import { Button } from "@/components/ui/button"; import { Checkbox } from "@/components/ui/checkbox"; import { SquarePen, Trash2 } from "lucide-react"; interface TaskItemProps { task: { image: string; title: string }; } const TaskItem = ({ task }: TaskItemProps) => { const { image, title } = task return (
  • SA
    {title}
  • ); }; export default TaskItem;