import React from 'react' interface LoadbarProps { theme?: string width?: string | null } const Loadbar: React.FC = ({ theme, width }) => { let color = 'bg-dark-300' if (theme == 'light') { color = 'bg-beige-300' } return (
{width ? (
) : (
)} Loading...
) } export default Loadbar