mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-03-04 15:20:18 +01:00
22 lines
461 B
TypeScript
22 lines
461 B
TypeScript
|
|
import { cn } from '~/utils';
|
||
|
|
|
||
|
|
export default function SendIcon({ size = 24, className = '' }) {
|
||
|
|
return (
|
||
|
|
<svg
|
||
|
|
width={size}
|
||
|
|
height={size}
|
||
|
|
viewBox={'0 0 24 24'}
|
||
|
|
fill="none"
|
||
|
|
className={cn('text-white dark:text-black', className)}
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
d="M7 11L12 6L17 11M12 18V7"
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeWidth="2"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
/>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|