A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/feed-generator 28 lines 722 B view raw
1import * as React from "react"; 2 3export type PreviousProps = { 4 color?: string; 5}; 6 7const Previous: React.FC<PreviousProps> = ({ color = "#000", ...props }) => ( 8 <svg 9 width={18} 10 xmlns="http://www.w3.org/2000/svg" 11 height={18} 12 style={{ 13 WebkitPrintColorAdjust: "exact", 14 }} 15 fill="none" 16 {...props} 17 > 18 <path 19 d="M3.55 2c.304 0 .55.243.55.542V7.16l8.001-4.716a1.224 1.224 0 0 1 1.23-.015c.413.23.669.677.669 1.162v9.818c0 .486-.256.932-.669 1.162-.382.216-.853.21-1.23-.015L4.1 9.84v4.618a.546.546 0 0 1-.55.542.546.546 0 0 1-.55-.542V2.542C3 2.243 3.246 2 3.55 2Z" 20 className="ionicon" 21 style={{ 22 fill: color, 23 }} 24 /> 25 </svg> 26); 27 28export default Previous;