feat: quotes
This commit is contained in:
parent
00866fd73a
commit
5913cc3b88
20 changed files with 311 additions and 22 deletions
14
src/components/LoadingBar/index.tsx
Normal file
14
src/components/LoadingBar/index.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue