import React from "react"; import { Box, Text } from "grommet"; import { StatusGoodSmall } from "grommet-icons"; import { stateToColor } from "../../utils/indi"; const LightVector = ({ vector }) => { return ( {vector.values.map((v) => ( {v.label || v.name} ))} ); }; export default LightVector;