How to use the Send icon
import { SendIcon } from "@/assets/icons/sendIcon"
export default function Example() {
return <SendIcon width="32px" height="32px" />
}User icon
Copy the Send icon as an optimized JSX SVG component for React, Next.js, dashboards, landing pages and Tailwind interfaces.
Copy-ready code
export const SendIcon = ({ width = "40px", height = "40px", color = "#000", ...props }) => (
<svg {...props} width={width} height={height} viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clipPath="url(#clip0_15_829)">
<rect width="24" height="24" fill="none" />
<path d="M19.364 5.05026L3.10051 8.58579L10.8787 13.5355M19.364 5.05026L15.8284 21.3137L10.8787 13.5355M19.364 5.05026L10.8787 13.5355" stroke={color} strokeLinecap="round" strokeLinejoin="round" />
</g>
<defs>
<clipPath id="clip0_15_829">
<rect width="24" height="24" fill="none" />
</clipPath>
</defs>
</svg>
);
import { SendIcon } from "@/assets/icons/sendIcon"
export default function Example() {
return <SendIcon width="32px" height="32px" />
}Built for the web
This copy-ready component works in React and Next.js projects, and the SVG can be adapted for any interface.
Looking for a similar mark? Browse the related icons below or explore the full user collection.
Yes. You can copy the JSX component and use it in React and Next.js projects.
Yes. Edit the SVG attributes or pass className, width, height and color props depending on the component.