import { Flex } from '../primitives' import React, { ComponentPropsWithoutRef, FC } from 'react' type Props = { value: number max: number } & ComponentPropsWithoutRef const ProgressBar: FC = ({ value, max, ...props }) => { return ( {[...Array(max)].map((_item, i) => ( ))} ) } export default ProgressBar