import { Box } from './../elements/LayoutPrimitives' type ProgressBarProps = { fillPercentage: number fillColor: string backgroundColor: string borderRadius: string } export function ProgressBar(props: ProgressBarProps): JSX.Element { return ( ) }