import React from 'react'; import { Cross } from 'shared/icons'; import * as S from './Styles'; const OptionValue = ({ data, removeProps }: any) => { return ( {data.label} ); }; export default OptionValue;