A decentralized music tracking and discovery platform built on AT Protocol 馃幍 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
97
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/pgpull 22 lines 539 B view raw
1function Playlist() { 2 return ( 3 <svg 4 xmlns="http://www.w3.org/2000/svg" 5 width="24" 6 height="24" 7 viewBox="0 0 24 24" 8 > 9 <path 10 fill="none" 11 stroke="var(--color-text)" 12 stroke-linecap="round" 13 stroke-linejoin="round" 14 stroke-width="1.5" 15 d="M2 3h18M2 10h13M2 17h7m9.25 2c0 1.657-1.4 3-3.125 3S12 20.657 12 19s1.4-3 3.125-3s3.125 1.343 3.125 3m0 0v-9c.417.6.75 3.12 3.75 3.6" 16 color="var(--color-text)" 17 /> 18 </svg> 19 ); 20} 21 22export default Playlist;