mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-19 08:46:11 +01:00
20 lines
437 B
TypeScript
20 lines
437 B
TypeScript
|
|
export default function SquirclePlusIcon() {
|
||
|
|
return (
|
||
|
|
<svg
|
||
|
|
stroke="currentColor"
|
||
|
|
fill="none"
|
||
|
|
strokeWidth="2"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
className="text-3xl"
|
||
|
|
height="1em"
|
||
|
|
width="1em"
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
>
|
||
|
|
<line x1="12" y1="5" x2="12" y2="19" />
|
||
|
|
<line x1="5" y1="12" x2="19" y2="12" />
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|