|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import { motion } from 'framer-motion';
|
|
|
|
|
import styled from 'styled-components';
|
|
|
|
|
import { THEME_GLOBALS } from '../../../themes/globals';
|
|
|
|
|
import { Flex } from '../../basic/Flex';
|
|
|
|
|
import { SpacerMD, SpacerXL } from '../../basic/Text';
|
|
|
|
|
|
|
|
|
@ -76,7 +77,9 @@ export function SessionProgressBar(props: Props) {
|
|
|
|
|
color={color}
|
|
|
|
|
initial={{ width: `${initialValue}%` }}
|
|
|
|
|
animate={{ width: `${progress}%` }}
|
|
|
|
|
transition={{ duration: 0.5 }}
|
|
|
|
|
transition={{
|
|
|
|
|
duration: THEME_GLOBALS['--duration-progress-bar'],
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</ProgressContainer>
|
|
|
|
|
</Flex>
|
|
|
|
|