mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-14 05:24:24 +01:00
26 lines
552 B
TypeScript
26 lines
552 B
TypeScript
import { cn } from '~/utils/';
|
|||
|
|||
export default function SpeechIcon({ className }) {
|
|||
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"
|
|||
strokeLinejoin="round"
|
|||
className={cn(className)}
|
|||
>
|
|||
<path d="M2 10v3" />
|
|||
<path d="M6 6v11" />
|
|||
<path d="M10 3v18" />
|
|||
<path d="M14 8v7" />
|
|||
<path d="M18 5v13" />
|
|||
<path d="M22 10v3" />
|
|||
</svg>
|
|||
);
|
|||
}
|