blob: cbf068e7be0d82ab8e22a10ec2adb8e3fbb68c7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
'use client'
import { Next13ProgressBar } from 'next13-progressbar'
export function ProgressBar() {
return (
<Next13ProgressBar
height="2px"
color="#64748b"
options={{ showSpinner: true }}
showOnShallow
/>
)
}
|