"use client"
import { formatDriveListDate } from "@/lib/drive/drive-date"
import { cn } from "@/lib/utils"
export function DriveListModified({
iso,
className,
}: {
iso: string
className?: string
}) {
const { short, full, dateTime } = formatDriveListDate(iso)
if (!full) {
return (
—
)
}
return (
)
}