import React from "react"; export interface Props { maxProgress?: number; progress: number; width?: number; height?: number; color?: string; backgroundColor?: string; } export default function (props: Props) { const maxProgress = props.maxProgress ? props.maxProgress : 100; const width = props.width ? props.width : 20; const height = props.height ? props.height : 20; const color = props.color ? props.color : "black"; const backgroundColor = props.backgroundColor ? props.backgroundColor : "white"; return ( ) }