interface Props { total: number; completed: number; inline?: boolean; } export default function CompletionBar(props: Props) { const progress = (props.completed / props.total) * 100; return ( ); }