/* eslint react/no-unknown-property: 0 */ /* eslint react/prefer-stateless-function: 0 */ /** * Spotify player iframe widget * * @author Alexander Wallin * @see https://developer.spotify.com/technologies/widgets/spotify-play-button/ */ import * as React from "react" // Size presets, defined by Spotify const sizePresets = { large: { width: 300, height: 380, }, compact: { width: 300, height: 80, }, } function SpotifyPlayer({ uri, view, theme, size }) { return (