import { IconHC1stPlaceMedal } from 'react-fluentui-emoji/lib/high-contrast';
const App = () => {
return (
<>
<IconHC1stPlaceMedal />
{/* just high contrast you can change the color */}
<IconHC1stPlaceMedal color={'red'} size={'3rem'} />
</>
)
}
export default App