A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at fix/spotify 33 lines 726 B view raw
1import * as React from "react"; 2 3export type PauseProps = { 4 color?: string; 5 small?: boolean; 6}; 7 8const Pause: React.FC<PauseProps> = ({ 9 color = "#000", 10 small = false, 11 ...props 12}) => ( 13 <svg 14 width={small ? 20 : 32} 15 xmlns="http://www.w3.org/2000/svg" 16 height={small ? 20 : 32} 17 style={{ 18 WebkitPrintColorAdjust: "exact", 19 }} 20 viewBox="0 0 512 512" 21 {...props} 22 > 23 <title>{"Pause"}</title> 24 <path 25 d="M208 432h-48a16 16 0 0 1-16-16V96a16 16 0 0 1 16-16h48a16 16 0 0 1 16 16v320a16 16 0 0 1-16 16zm144 0h-48a16 16 0 0 1-16-16V96a16 16 0 0 1 16-16h48a16 16 0 0 1 16 16v320a16 16 0 0 1-16 16z" 26 style={{ 27 fill: color, 28 }} 29 /> 30 </svg> 31); 32 33export default Pause;