plane contrails icon

plane-contrails-rounded from Material Symbols by Google · Rounded · Transit · Apache-2.0 Free for personal and commercial use.

Name
plane-contrails-rounded
Set
Material Symbols
Style
Rounded
Category
Transit
Viewbox
24×24
License
Apache 2.0
Aliases
plane-contrails-outline-rounded

1 other variant in Material Symbols

The same icon in other sets

More transit icons from Material Symbols

Use the plane contrails icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M8.7 21.3q-.3-.3-.3-.712t.3-.713l3.2-3.175q.3-.3.7-.3t.7.3t.3.713t-.3.712L10.125 21.3q-.3.3-.712.3t-.713-.3m5 0q-.3-.3-.3-.712t.3-.713l2.675-2.675q.3-.3.713-.3t.712.3t.3.713t-.3.712L15.125 21.3q-.3.3-.712.3t-.713-.3m-11-11q-.3-.3-.3-.712t.3-.713L5.375 6.2q.3-.3.713-.3t.712.3t.3.712t-.3.713L4.125 10.3q-.3.3-.712.3t-.713-.3m0 5q-.3-.3-.3-.712t.3-.713L5.875 10.7q.3-.3.713-.3t.712.3t.3.713t-.3.712L4.125 15.3q-.3.3-.712.3t-.713-.3m9.475-3.5L9.8 10.475q-.3-.175-.325-.537t.425-.813q.125-.125.288-.187t.337-.013l2 .4l1.95-1.95l-4.8-1.925q-.425-.175-.5-.6t.25-.725L9.7 3.85q.125-.125.313-.187t.387-.013l6.775 1.05l2.275-2.25q.225-.225.5-.337T20.5 2t.55.113t.5.337q.225.2.338.475t.112.55t-.112.563t-.338.512L19.275 6.8l1.05 6.725q.05.2-.012.413t-.213.362l-.1.125q-.35.375-.85.275t-.7-.575L16.6 9.5l-1.95 1.95l.375 1.95q.05.2-.013.4t-.312.45q-.275.275-.675.213t-.6-.413z"/></svg>

React

import type { SVGProps } from "react";

export function MaterialSymbolsPlaneContrailsRounded(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M8.7 21.3q-.3-.3-.3-.712t.3-.713l3.2-3.175q.3-.3.7-.3t.7.3t.3.713t-.3.712L10.125 21.3q-.3.3-.712.3t-.713-.3m5 0q-.3-.3-.3-.712t.3-.713l2.675-2.675q.3-.3.713-.3t.712.3t.3.713t-.3.712L15.125 21.3q-.3.3-.712.3t-.713-.3m-11-11q-.3-.3-.3-.712t.3-.713L5.375 6.2q.3-.3.713-.3t.712.3t.3.712t-.3.713L4.125 10.3q-.3.3-.712.3t-.713-.3m0 5q-.3-.3-.3-.712t.3-.713L5.875 10.7q.3-.3.713-.3t.712.3t.3.713t-.3.712L4.125 15.3q-.3.3-.712.3t-.713-.3m9.475-3.5L9.8 10.475q-.3-.175-.325-.537t.425-.813q.125-.125.288-.187t.337-.013l2 .4l1.95-1.95l-4.8-1.925q-.425-.175-.5-.6t.25-.725L9.7 3.85q.125-.125.313-.187t.387-.013l6.775 1.05l2.275-2.25q.225-.225.5-.337T20.5 2t.55.113t.5.337q.225.2.338.475t.112.55t-.112.563t-.338.512L19.275 6.8l1.05 6.725q.05.2-.012.413t-.213.362l-.1.125q-.35.375-.85.275t-.7-.575L16.6 9.5l-1.95 1.95l.375 1.95q.05.2-.013.4t-.312.45q-.275.275-.675.213t-.6-.413z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M8.7 21.3q-.3-.3-.3-.712t.3-.713l3.2-3.175q.3-.3.7-.3t.7.3t.3.713t-.3.712L10.125 21.3q-.3.3-.712.3t-.713-.3m5 0q-.3-.3-.3-.712t.3-.713l2.675-2.675q.3-.3.713-.3t.712.3t.3.713t-.3.712L15.125 21.3q-.3.3-.712.3t-.713-.3m-11-11q-.3-.3-.3-.712t.3-.713L5.375 6.2q.3-.3.713-.3t.712.3t.3.712t-.3.713L4.125 10.3q-.3.3-.712.3t-.713-.3m0 5q-.3-.3-.3-.712t.3-.713L5.875 10.7q.3-.3.713-.3t.712.3t.3.713t-.3.712L4.125 15.3q-.3.3-.712.3t-.713-.3m9.475-3.5L9.8 10.475q-.3-.175-.325-.537t.425-.813q.125-.125.288-.187t.337-.013l2 .4l1.95-1.95l-4.8-1.925q-.425-.175-.5-.6t.25-.725L9.7 3.85q.125-.125.313-.187t.387-.013l6.775 1.05l2.275-2.25q.225-.225.5-.337T20.5 2t.55.113t.5.337q.225.2.338.475t.112.55t-.112.563t-.338.512L19.275 6.8l1.05 6.725q.05.2-.012.413t-.213.362l-.1.125q-.35.375-.85.275t-.7-.575L16.6 9.5l-1.95 1.95l.375 1.95q.05.2-.013.4t-.312.45q-.275.275-.675.213t-.6-.413z"/></svg>
</template>

CSS

.icon-plane-contrails-rounded {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M8.7%2021.3q-.3-.3-.3-.712t.3-.713l3.2-3.175q.3-.3.7-.3t.7.3t.3.713t-.3.712L10.125%2021.3q-.3.3-.712.3t-.713-.3m5%200q-.3-.3-.3-.712t.3-.713l2.675-2.675q.3-.3.713-.3t.712.3t.3.713t-.3.712L15.125%2021.3q-.3.3-.712.3t-.713-.3m-11-11q-.3-.3-.3-.712t.3-.713L5.375%206.2q.3-.3.713-.3t.712.3t.3.712t-.3.713L4.125%2010.3q-.3.3-.712.3t-.713-.3m0%205q-.3-.3-.3-.712t.3-.713L5.875%2010.7q.3-.3.713-.3t.712.3t.3.713t-.3.712L4.125%2015.3q-.3.3-.712.3t-.713-.3m9.475-3.5L9.8%2010.475q-.3-.175-.325-.537t.425-.813q.125-.125.288-.187t.337-.013l2%20.4l1.95-1.95l-4.8-1.925q-.425-.175-.5-.6t.25-.725L9.7%203.85q.125-.125.313-.187t.387-.013l6.775%201.05l2.275-2.25q.225-.225.5-.337T20.5%202t.55.113t.5.337q.225.2.338.475t.112.55t-.112.563t-.338.512L19.275%206.8l1.05%206.725q.05.2-.012.413t-.213.362l-.1.125q-.35.375-.85.275t-.7-.575L16.6%209.5l-1.95%201.95l.375%201.95q.05.2-.013.4t-.312.45q-.275.275-.675.213t-.6-.413z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M8.7%2021.3q-.3-.3-.3-.712t.3-.713l3.2-3.175q.3-.3.7-.3t.7.3t.3.713t-.3.712L10.125%2021.3q-.3.3-.712.3t-.713-.3m5%200q-.3-.3-.3-.712t.3-.713l2.675-2.675q.3-.3.713-.3t.712.3t.3.713t-.3.712L15.125%2021.3q-.3.3-.712.3t-.713-.3m-11-11q-.3-.3-.3-.712t.3-.713L5.375%206.2q.3-.3.713-.3t.712.3t.3.712t-.3.713L4.125%2010.3q-.3.3-.712.3t-.713-.3m0%205q-.3-.3-.3-.712t.3-.713L5.875%2010.7q.3-.3.713-.3t.712.3t.3.713t-.3.712L4.125%2015.3q-.3.3-.712.3t-.713-.3m9.475-3.5L9.8%2010.475q-.3-.175-.325-.537t.425-.813q.125-.125.288-.187t.337-.013l2%20.4l1.95-1.95l-4.8-1.925q-.425-.175-.5-.6t.25-.725L9.7%203.85q.125-.125.313-.187t.387-.013l6.775%201.05l2.275-2.25q.225-.225.5-.337T20.5%202t.55.113t.5.337q.225.2.338.475t.112.55t-.112.563t-.338.512L19.275%206.8l1.05%206.725q.05.2-.012.413t-.213.362l-.1.125q-.35.375-.85.275t-.7-.575L16.6%209.5l-1.95%201.95l.375%201.95q.05.2-.013.4t-.312.45q-.275.275-.675.213t-.6-.413z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/material-symbols/plane-contrails-rounded.svg?color=%231a73e8&size=48