// frontend/components/mail/Sug.tsx — 아리 제안 항목 (할 일 / 일정) "use client"; import type { ReactNode } from "react"; import { Icon } from "@/components/Icon"; export function Sug({ kind, text, meta, added, onAdd, }: { kind: "task" | "event"; text: string; meta: ReactNode; added: boolean; onAdd: () => void; }) { return (
{text}
{meta}
); }