mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-20 10:20:15 +01:00
19 lines
635 B
TypeScript
19 lines
635 B
TypeScript
|
|
export default function DataIcon() {
|
||
|
|
return (
|
||
|
|
<svg
|
||
|
|
stroke="currentColor"
|
||
|
|
fill="currentColor"
|
||
|
|
strokeWidth="0"
|
||
|
|
viewBox="0 0 20 20"
|
||
|
|
className="h-4 h-5 w-4 w-5 fill-gray-800 group-radix-state-active:fill-white dark:fill-gray-500"
|
||
|
|
height="1em"
|
||
|
|
width="1em"
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
>
|
||
|
|
<path d="M3 12v3c0 1.657 3.134 3 7 3s7-1.343 7-3v-3c0 1.657-3.134 3-7 3s-7-1.343-7-3z" />
|
||
|
|
<path d="M3 7v3c0 1.657 3.134 3 7 3s7-1.343 7-3V7c0 1.657-3.134 3-7 3S3 8.657 3 7z" />
|
||
|
|
<path d="M17 5c0 1.657-3.134 3-7 3S3 6.657 3 5s3.134-3 7-3 7 1.343 7 3z" />
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|