forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1import * as React from "react";
2
3export type NextProps = {
4 color?: string;
5};
6
7const Next: React.FC<NextProps> = ({ 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="M14.45 2a.546.546 0 0 0-.55.542V7.16L5.899 2.444a1.224 1.224 0 0 0-1.23-.015C4.256 2.659 4 3.105 4 3.591v9.818c0 .486.256.932.669 1.162.382.216.853.21 1.23-.015L13.9 9.84v4.618c0 .299.246.542.55.542.304 0 .55-.243.55-.542V2.542A.546.546 0 0 0 14.45 2Z"
20 className="ionicon"
21 style={{
22 fill: color,
23 }}
24 />
25 </svg>
26);
27
28export default Next;