in src/components/atoms/PlayerButton/PlayerButton.tsx [8:11]
export default function PlayerButton({ icon: Icon, text }: Props) {
return (
<div className={styles.wrapper}>
<Icon className={styles.icon} /> {text && <span className={styles.text}>{text}</span>}