mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-02-16 23:48:09 +01:00
19 lines
536 B
TypeScript
19 lines
536 B
TypeScript
|
|
import React from 'react';
|
||
|
|
|
||
|
|
export default function SendMessageIcon() {
|
||
|
|
return (
|
||
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
viewBox="0 0 16 16"
|
||
|
|
fill="none"
|
||
|
|
className="icon-sm m-1 md:m-0"
|
||
|
|
style={{ width: '1em', height: '1em', verticalAlign: 'middle' }}
|
||
|
|
>
|
||
|
|
<path
|
||
|
|
d="M.5 1.163A1 1 0 0 1 1.97.28l12.868 6.837a1 1 0 0 1 0 1.766L1.969 15.72A1 1 0 0 1 .5 14.836V10.33a1 1 0 0 1 .816-.983L8.5 8 1.316 6.653A1 1 0 0 1 .5 5.67V1.163Z"
|
||
|
|
fill="currentColor"
|
||
|
|
></path>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
}
|