mirror of
https://github.com/cupcakearmy/nicco.io.git
synced 2026-05-26 04:55:24 +00:00
10 lines
197 B
Plaintext
10 lines
197 B
Plaintext
---
|
|
import type { ReadTimeResults } from 'reading-time'
|
|
|
|
type Props = { readingTime: ReadTimeResults }
|
|
|
|
const { readingTime } = Astro.props
|
|
---
|
|
|
|
<span>~ {readingTime.minutes.toFixed(0)} min</span>
|