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 17 lines 457 B view raw
1function Equalizer() { 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="var(--color-text)" 11 d="M5 7a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m1.5-3.5a3.5 3.5 0 1 0 0 7a3.5 3.5 0 0 0 0-7M12 8h8V6h-8zm4 9a1.5 1.5 0 1 1 3 0a1.5 1.5 0 0 1-3 0m1.5-3.5a3.5 3.5 0 1 0 0 7a3.5 3.5 0 0 0 0-7M4 16v2h8v-2z" 12 /> 13 </svg> 14 ); 15} 16 17export default Equalizer;