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

Configure Feed

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

at feat/pgpull 18 lines 524 B view raw
1import React from "react"; 2 3const Dropbox = (props: React.SVGProps<SVGSVGElement>) => ( 4 <svg 5 xmlns="http://www.w3.org/2000/svg" 6 width="24" 7 height="24" 8 viewBox="0 0 256 218" 9 {...props} 10 > 11 <path 12 fill="#0061FF" 13 d="M63.995 0L0 40.771l63.995 40.772L128 40.771zM192 0l-64 40.775l64 40.775l64.001-40.775zM0 122.321l63.995 40.772L128 122.321L63.995 81.55zM192 81.55l-64 40.775l64 40.774l64-40.774zM64 176.771l64.005 40.772L192 176.771L128.005 136z" 14 /> 15 </svg> 16); 17 18export default Dropbox;