-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathanonymous.tsx
45 lines (42 loc) · 1.06 KB
/
anonymous.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* SPDX-FileCopyrightText: 2014-present Kriasoft */
/* SPDX-License-Identifier: MIT */
import { SvgIcon, SvgIconProps } from "@mui/joy";
export function AnonymousIcon(props: AnonymousIconProps): JSX.Element {
return (
<SvgIcon role="img" viewBox="0 0 32 32" {...props}>
<title>Anonymous</title>
<circle
fill="none"
stroke="#999"
cx="16"
cy="16"
r="14"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={10}
/>
<circle
fill="none"
stroke="#999"
cx="16"
cy="13"
r="5"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={10}
/>
<path
fill="none"
stroke="#999"
d="M5.4 25.1c1.8-4.1 5.8-7 10.6-7s8.9 2.9 10.6 7"
strokeWidth={2}
strokeLinecap="round"
strokeLinejoin="round"
strokeMiterlimit={10}
/>
</SvgIcon>
);
}
export type AnonymousIconProps = Omit<SvgIconProps, "children">;