github.com/uchennaokeke444/nomad@v0.11.8/website/components/featured-slider/StatusBar.jsx (about)

     1  import React from 'react'
     2  
     3  export default function StatusBar({ theme, active, timing, brand }) {
     4    return (
     5      <div className={`progress-bar ${theme}`}>
     6        <span
     7          className={`${active ? ' active' : ''} ${brand ? brand : ''}`}
     8          style={
     9            active
    10              ? { animationDuration: `${timing}s` }
    11              : { animationDuration: '0s' }
    12          }
    13        />
    14      </div>
    15    )
    16  }