forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1import { FC } from "react";
2
3export type ArrowBackProps = {
4 color?: string;
5 size?: number;
6};
7
8const ArrowBack: FC<ArrowBackProps> = ({
9 color = "#000",
10 size = 20,
11 ...props
12}) => (
13 <svg
14 width={size}
15 xmlns="http://www.w3.org/2000/svg"
16 height={size}
17 style={{
18 WebkitPrintColorAdjust: "exact",
19 }}
20 fill="none"
21 {...props}
22 >
23 <g
24 style={{
25 fill: color,
26 }}
27 >
28 <path
29 fill="none"
30 d="M0 0h20v20H0Z"
31 style={{
32 fill: "none",
33 }}
34 />
35 <path
36 d="M16 9.25H6.873l4.192-4.193L10 4l-6 6 6 6 1.058-1.058-4.185-4.192H16v-1.5Z"
37 style={{
38 fill: color,
39 }}
40 />
41 </g>
42 </svg>
43);
44
45export default ArrowBack;