plane landing icon
Free plane landing SVG icon, MIT licensed. Copy the SVG, install for React/Vue/Angular, or download. Part of the Softicons commerce set.
Setup guide
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M2 22h20"/>
<path d="M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 9l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.96c.58.3.93.9.93 1.55a1.4 1.4 0 0 1-1.49 1.39l-12.5-1.06a2 2 0 0 1-1.16-.54Z"/>
</svg><!-- via the CDN — no build step -->
<img src="https://cdn.softicons.dev/v1/icons/commerce/plane-landing.svg"
width="24" height="24" alt="plane landing icon">
<!-- …or paste the raw SVG from the SVG tab -->import { PlaneLandingIcon } from "@softicons/react";
export default function Example() {
return <PlaneLandingIcon size={24} strokeWidth={2} />;
}<script setup>
import { PlaneLandingIcon } from "@softicons/vue";
</script>
<template>
<PlaneLandingIcon :size="24" :stroke-width="2" />
</template>import { PlaneLandingIconComponent } from "@softicons/angular";
@Component({
standalone: true,
imports: [PlaneLandingIconComponent],
template: `<plane-landing-icon [size]="24" [strokeWidth]="2" />`,
})
export class DemoComponent {}