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