website refactor
This commit is contained in:
42
apps/website/ui/ProgressLine.tsx
Normal file
42
apps/website/ui/ProgressLine.tsx
Normal file
@@ -0,0 +1,42 @@
|
||||
'use client';
|
||||
|
||||
import { Box } from '@/ui/primitives/Box';
|
||||
import { motion } from 'framer-motion';
|
||||
import React from 'react';
|
||||
|
||||
interface ProgressLineProps {
|
||||
isLoading: boolean;
|
||||
}
|
||||
|
||||
export function ProgressLine({ isLoading }: ProgressLineProps) {
|
||||
if (!isLoading) return null;
|
||||
|
||||
return (
|
||||
<Box
|
||||
fullWidth
|
||||
height="2px"
|
||||
bg="var(--ui-color-bg-surface-muted)"
|
||||
style={{ overflow: 'hidden', position: 'relative' }}
|
||||
>
|
||||
<motion.div
|
||||
style={{
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
left: 0,
|
||||
height: '100%',
|
||||
backgroundColor: 'var(--ui-color-intent-primary)'
|
||||
}}
|
||||
initial={{ width: '0%', left: '0%' }}
|
||||
animate={{
|
||||
width: ['20%', '50%', '20%'],
|
||||
left: ['-20%', '100%', '-20%'],
|
||||
}}
|
||||
transition={{
|
||||
duration: 1.5,
|
||||
repeat: Infinity,
|
||||
ease: 'linear',
|
||||
}}
|
||||
/>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user