snort/src/Element/SoundCloudEmded.tsx
2023-02-09 12:30:29 +00:00

13 lines
273 B
TypeScript

const SoundCloudEmbed = ({ link }: { link: string }) => {
return (
<iframe
width="100%"
height="166"
scrolling="no"
allow="autoplay"
src={`https://w.soundcloud.com/player/?url=${link}`}></iframe>
);
};
export default SoundCloudEmbed;