import CalendarIcon from "@/assets/report/calendar.svg?react"; import GlobeIcon from "@/assets/report/globe.svg?react"; import { PLAN_HEADER_META_CHIP_CLASS } from "@/features/plan/ui/header/planHeaderSectionClasses"; type PlanHeaderMetaChipsProps = { date: string; targetUrl: string; }; /** DEMO: 날짜·URL 모두 `` 칩 (링크·truncate·호버 없음) */ export function PlanHeaderMetaChips({ date, targetUrl }: PlanHeaderMetaChipsProps) { return (
{date} {targetUrl}
); }