addons/isl/src/stackEdit/ui/StackEditIcon.tsxblame
View source
b69ab311/**
b69ab312 * Copyright (c) Meta Platforms, Inc. and affiliates.
b69ab313 *
b69ab314 * This source code is licensed under the MIT license found in the
b69ab315 * LICENSE file in the root directory of this source tree.
b69ab316 */
b69ab317
b69ab318export function StackEditIcon(props: {slot?: 'start'}) {
b69ab319 return (
b69ab3110 <svg
b69ab3111 width="16"
b69ab3112 height="16"
b69ab3113 viewBox="0 0 64 64"
b69ab3114 fill="none"
b69ab3115 xmlns="http://www.w3.org/2000/svg"
b69ab3116 {...props}>
b69ab3117 <g clipPath="url(#clip0_108_2)">
b69ab3118 <mask
b69ab3119 id="mask0_108_2"
b69ab3120 style={{maskType: 'alpha'}}
b69ab3121 maskUnits="userSpaceOnUse"
b69ab3122 x="9"
b69ab3123 y="6"
b69ab3124 width="57"
b69ab3125 height="55">
b69ab3126 <path
b69ab3127 d="M21.5 40.5L52 6H9V61L63.5 58.5L66 24L47 43.5L31.5 51L21.5 40.5Z"
b69ab3128 fill="#D9D9D9"
b69ab3129 />
b69ab3130 </mask>
b69ab3131 <g mask="url(#mask0_108_2)">
b69ab3132 <path
b69ab3133 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"
b69ab3134 fill="currentColor"
b69ab3135 />
b69ab3136 <path
b69ab3137 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"
b69ab3138 fill="currentColor"
b69ab3139 />
b69ab3140 <path
b69ab3141 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"
b69ab3142 fill="currentColor"
b69ab3143 />
b69ab3144 <path d="M20 18H53" stroke="currentColor" strokeWidth="3" />
b69ab3145 <path d="M11 18H14" stroke="currentColor" strokeWidth="3" />
b69ab3146 <path d="M20.0769 32L47 32" stroke="currentColor" strokeWidth="3" />
b69ab3147 <path d="M12 32H14.6923" stroke="currentColor" strokeWidth="3" />
b69ab3148 <path d="M20.1429 46L53 46" stroke="currentColor" strokeWidth="3" />
b69ab3149 </g>
b69ab3150 <path
b69ab3151 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"
b69ab3152 stroke="currentColor"
b69ab3153 strokeWidth="3"
b69ab3154 />
b69ab3155 </g>
b69ab3156 <defs>
b69ab3157 <clipPath id="clip0_108_2">
b69ab3158 <rect width="64" height="64" fill="white" />
b69ab3159 </clipPath>
b69ab3160 </defs>
b69ab3161 </svg>
b69ab3162 );
b69ab3163}