mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-07 02:01:50 +01:00
24 lines
568 B
TypeScript
24 lines
568 B
TypeScript
|
|
import React from 'react';
|
||
|
|
|
||
|
|
export default function ChatGPTMinimalIcon() {
|
||
|
|
return (
|
||
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
width="24"
|
||
|
|
height="24"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
fill="none"
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeWidth="2"
|
||
|
|
strokeLinecap="round"
|
||
|
|
className="lucide lucide-bot"
|
||
|
|
>
|
||
|
|
<rect width="18" height="10" x="3" y="11" rx="2" />
|
||
|
|
<circle cx="12" cy="5" r="2" />
|
||
|
|
<path d="M12 7v4" />
|
||
|
|
<line x1="8" x2="8" y1="16" y2="16" />
|
||
|
|
<line x1="16" x2="16" y1="16" y2="16" />
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|