import React from 'react'; interface MedalStarIconProps extends React.SVGProps { width?: number; height?: number; strokeColor?: string; } const MedalStarIcon: React.FC = ({ width = 7, height = 7, strokeColor = '#333333', ...props }) => ( ); export default MedalStarIcon;