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