import { StarIcon } from '@heroicons/react/20/solid'; import React from 'react'; type MetricButtonProps = { isHighlighted: boolean; label: string; selected: boolean; onClick: () => void; }; const MetricButton: React.FC = ({ isHighlighted, label, selected, onClick, }) => { return ( ); }; export default MetricButton;