// frontend/components/journey/FinishTile.tsx — 마무리 타일 (원본 tile) import { forwardRef } from "react"; import { Icon } from "@/components/Icon"; import type { IconName } from "@/components/icons/paths"; import type { TileCard } from "@/lib/types"; type Hover = { className: string; onMouseEnter: () => void; onMouseLeave: () => void; }; export const FinishTile = forwardRef( function FinishTile({ card, hover }, ref) { return (
{card.tt}
{card.ts}
); }, );