Release 2025-05-19
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
---
|
||||
import { omit } from 'lodash-es'
|
||||
|
||||
import { formatDateShort, type FormatDateShortOptions } from '../lib/timeAgo'
|
||||
|
||||
import type { HTMLAttributes } from 'astro/types'
|
||||
|
||||
type Props = FormatDateShortOptions &
|
||||
Omit<HTMLAttributes<'time'>, keyof FormatDateShortOptions | 'datetime'> & {
|
||||
date: Date
|
||||
}
|
||||
|
||||
const { date, ...props } = Astro.props
|
||||
---
|
||||
|
||||
<time datetime={date.toISOString()} {...omit(props, 'prefix')}>{formatDateShort(date, props)}</time>
|
||||
Reference in New Issue
Block a user