addons/isl/src/icons/SplitCommitIcon.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 SplitCommitIcon(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 stroke="currentColor" strokeWidth={4}>
b69ab3118 <path d="M 51.3384,38.090562 16.404011,45.516095 A 18,18 0 0 0 37.197792,57.45369 18,18 0 0 0 51.3384,38.090562 Z" />
b69ab3119 <path d="M 26.802208,8.54631 A 18,18 0 0 0 12.650137,27.911875 L 47.607452,20.481468 A 18,18 0 0 0 26.802208,8.54631 Z" />
b69ab3120 <path
b69ab3121 strokeDasharray="17.6,4"
b69ab3122 strokeWidth={6}
b69ab3123 d="M 2.6555718,39.237351 61.344428,26.762649"
b69ab3124 />
b69ab3125 </g>{' '}
b69ab3126 </svg>
b69ab3127 );
b69ab3128}