mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
Co-authored-by: Darius Cepulis <dcepulis@mux.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
361 B
Plaintext
21 lines
361 B
Plaintext
---
|
|
|
|
import type { HTMLAttributes } from 'astro/types';
|
|
|
|
interface Props extends Omit<HTMLAttributes<'time'>, 'datetime'> {
|
|
date: Date;
|
|
}
|
|
|
|
const { date, ...rest } = Astro.props;
|
|
---
|
|
|
|
<time {...rest} datetime={date.toISOString()}>
|
|
{
|
|
date.toLocaleDateString("en-us", {
|
|
year: "numeric",
|
|
month: "short",
|
|
day: "numeric",
|
|
})
|
|
}
|
|
</time>
|