feat: quotes

This commit is contained in:
codytseng
2025-06-08 14:05:35 +08:00
parent 00866fd73a
commit 5913cc3b88
20 changed files with 311 additions and 22 deletions

View File

@@ -0,0 +1,14 @@
import { cn } from '@/lib/utils'
export function LoadingBar({ className }: { className?: string }) {
return (
<div className={cn('h-0.5 w-full overflow-hidden', className)}>
<div
className="h-full w-full bg-gradient-to-r from-primary/40 from-25% via-primary via-50% to-primary/40 to-75% animate-shimmer"
style={{
backgroundSize: '400% 100%'
}}
/>
</div>
)
}