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