import { useTheme } from '@emotion/react'; import { Wrapper, Label, Bar, Grade, } from './legendStyle'; const Legend = ({ min, max, ...props }) => { const theme = useTheme(); return ( {[...Array(max-min+1).keys()].map(i => )} ); }; export default Legend;