Cyclone icon

Cyclone is a Google Material Symbol from the Social category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

GradeOptical size

Outlined, unfilled, weight 400

cyclone_outlined_fill0_wght400.svg

Cyclone icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=cyclone" />

<span class="material-symbols-outlined">cyclone</span>

Cyclone icon in React

// With the font from the HTML tab:
export function CycloneIcon() {
  return (
    <span className="material-symbols-outlined">
      cyclone
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import CycloneIcon from "@material-symbols/svg-400/outlined/cyclone.svg?react";

Cyclone icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import CycloneOutlinedIcon from "@mui/icons-material/CycloneOutlined";

<CycloneOutlinedIcon />

Cyclone icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">cyclone</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import CycloneIcon from "@material-symbols/svg-400/outlined/cyclone.svg?component"; -->

Cyclone icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">cyclone</mat-icon>

Cyclone icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.cyclone, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.cyclone_outlined)

Cyclone icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_cyclone.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M12.013 15.75Q10.45 15.75 9.35 14.649 8.25 13.547 8.25 12q0-1.575 1.102-2.662Q10.453 8.25 12 8.25q1.575 0 2.663 1.088t1.087 2.65q0 1.562-1.087 2.662t-2.65 1.1Zm-.013-1.5q.95 0 1.6-.661T14.25 12q0-.95-.65-1.6t-1.587-.65q-.938 0-1.6 .65T9.75 11.988q0 .937 .661 1.6T12 14.25ZM17.025 22q.45-1.4 .725-2.737t.4-1.988q-1.275 1.45-2.9 2.113T12 20.05q-3.4 0-5.962-.487T2 18.65v-1.6q1.4 .45 2.763 .725t2.012 .4q-1.375-1.125-2.1-2.837T3.95 12q0-3.425 .488-5.975T5.35 2h1.6q-.45 1.4-.712 2.738T5.875 6.725q1.2-1.375 2.85-2.075t3.275-.7q3.425 0 5.975 .488T22 5.35v1.6q-1.4-.45-2.737-.725T17.275 5.85q1.425 1.225 2.1 2.875t.675 3.275q0 3.425-.487 5.975T18.65 22h-1.625Zm-.387-5.359q1.912-1.91 1.912-4.638T16.641 7.363Q14.731 5.45 12.003 5.45T7.363 7.36Q5.45 9.269 5.45 11.997t1.91 4.641q1.909 1.912 4.637 1.912t4.641-1.909Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_cyclone), contentDescription = "Cyclone")

Cyclone icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/cyclone.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/cyclone.svg" width="24" height="24" alt="Cyclone">

Cyclone icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameCyclone
Ligaturecyclone
Code pointU+EBD5
CategorySocial
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/cyclone.svg, cyclone-fill.svg
FlutterSymbols.cyclone (Material Icons: Icons.cyclone)
MUI@mui/icons-material/Cyclone
LicenseApache License 2.0 (© Google LLC)

Keywords

socialalertwarningmovementclimatedangerweathernature

Related icons