nova-betterchat/src/assets/icons/SendIcon.tsx

24 lines
496 B
TypeScript
Raw Normal View History

2023-03-03 23:17:11 +01:00
import React from 'react';
const SendIcon = () => {
return (
<svg
stroke='currentColor'
fill='none'
strokeWidth='2'
viewBox='0 0 24 24'
strokeLinecap='round'
strokeLinejoin='round'
className='h-4 w-4 mr-1'
height='1em'
width='1em'
xmlns='http://www.w3.org/2000/svg'
>
<line x1='22' y1='2' x2='11' y2='13'></line>
<polygon points='22 2 15 22 11 13 2 9 22 2'></polygon>
</svg>
);
};
export default SendIcon;