mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-19 08:46:11 +01:00
21 lines
428 B
TypeScript
21 lines
428 B
TypeScript
|
|
export default function CodePaths() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<path
|
||
|
|
d="M21.333 23L26.333 18L21.333 13"
|
||
|
|
stroke="white"
|
||
|
|
strokeWidth="1.66667"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
<path
|
||
|
|
d="M14.667 13L9.66699 18L14.667 23"
|
||
|
|
stroke="white"
|
||
|
|
strokeWidth="1.66667"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|