forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Audio32.tsx
37 lines (36 loc) · 845 Bytes
/
Audio32.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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
import { SVGProps } from 'react';
const SvgAudio32 = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 32 32"
{...props}
>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M9.333 25.667a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M12.333 22.667V9A2.667 2.667 0 0 1 15 6.333h8A2.667 2.667 0 0 1 25.667 9v9.667"
/>
<path
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="M22.667 21.667a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
/>
</svg>
);
export default SvgAudio32;