2.1 KB64 lines
Blame
1/**
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8export function StackEditIcon(props: {slot?: 'start'}) {
9 return (
10 <svg
11 width="16"
12 height="16"
13 viewBox="0 0 64 64"
14 fill="none"
15 xmlns="http://www.w3.org/2000/svg"
16 {...props}>
17 <g clipPath="url(#clip0_108_2)">
18 <mask
19 id="mask0_108_2"
20 style={{maskType: 'alpha'}}
21 maskUnits="userSpaceOnUse"
22 x="9"
23 y="6"
24 width="57"
25 height="55">
26 <path
27 d="M21.5 40.5L52 6H9V61L63.5 58.5L66 24L47 43.5L31.5 51L21.5 40.5Z"
28 fill="#D9D9D9"
29 />
30 </mask>
31 <g mask="url(#mask0_108_2)">
32 <path
33 d="M15 18C15 19.6569 13.6569 21 12 21C10.3431 21 9 19.6569 9 18C9 16.3431 10.3431 15 12 15C13.6569 15 15 16.3431 15 18Z"
34 fill="currentColor"
35 />
36 <path
37 d="M15 32C15 33.6569 13.6569 35 12 35C10.3431 35 9 33.6569 9 32C9 30.3431 10.3431 29 12 29C13.6569 29 15 30.3431 15 32Z"
38 fill="currentColor"
39 />
40 <path
41 d="M15 46C15 47.6569 13.6569 49 12 49C10.3431 49 9 47.6569 9 46C9 44.3431 10.3431 43 12 43C13.6569 43 15 44.3431 15 46Z"
42 fill="currentColor"
43 />
44 <path d="M20 18H53" stroke="currentColor" strokeWidth="3" />
45 <path d="M11 18H14" stroke="currentColor" strokeWidth="3" />
46 <path d="M20.0769 32L47 32" stroke="currentColor" strokeWidth="3" />
47 <path d="M12 32H14.6923" stroke="currentColor" strokeWidth="3" />
48 <path d="M20.1429 46L53 46" stroke="currentColor" strokeWidth="3" />
49 </g>
50 <path
51 d="M34.9259 34.5L29 42.75L31.3704 45L40.4568 40.125M34.9259 34.5L55.0741 15L61 20.625L40.4568 40.125M34.9259 34.5L40.4568 40.125"
52 stroke="currentColor"
53 strokeWidth="3"
54 />
55 </g>
56 <defs>
57 <clipPath id="clip0_108_2">
58 <rect width="64" height="64" fill="white" />
59 </clipPath>
60 </defs>
61 </svg>
62 );
63}
64