forked from
rocksky.app/rocksky
A decentralized music tracking and discovery platform built on AT Protocol 馃幍
1import React, { FC } from "react";
2import Svg, { Path } from "react-native-svg";
3
4export type ArtistProps = {
5 size?: number;
6 color?: string;
7 width?: number;
8 height?: number;
9};
10
11const ArtistIcon: FC<ArtistProps> = ({
12 size = 24,
13 color = "#fff",
14 ...props
15}) => (
16 <Svg
17 viewBox={`0 0 ${size} ${size}`}
18 width={props.width || size}
19 height={props.height || size}
20 {...props}
21 >
22 <Path
23 d="M20 4.22a5.67 5.67 0 0 0-9.68 4.57l-8 9.79 3.3 3.3 9.79-8c.18 0 .36.05.55.05a5.7 5.7 0 0 0 4-9.73ZM5.74 19.86l-1.38-1.38 6.44-7.89a5.48 5.48 0 0 0 2.83 2.84Zm13.21-8.65a4.2 4.2 0 1 1 0-5.94 4.17 4.17 0 0 1 0 5.95Z"
24 fill={color}
25 />
26 </Svg>
27);
28
29export default ArtistIcon;