890 B29 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 SplitCommitIcon(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 stroke="currentColor" strokeWidth={4}>
18 <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" />
19 <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" />
20 <path
21 strokeDasharray="17.6,4"
22 strokeWidth={6}
23 d="M 2.6555718,39.237351 61.344428,26.762649"
24 />
25 </g>{' '}
26 </svg>
27 );
28}
29