Files
v10/site/src/components/FormattedDate.astro
T
2026-03-06 16:19:27 -06:00

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>