Do Not Step icon

Do Not Step is a Google Material Symbol from the Travel 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

do_not_step_outlined_fill0_wght400.svg

Do Not Step 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=do_not_step" />

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

Do Not Step icon in React

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

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

Do Not Step 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 DoNotStepOutlinedIcon from "@mui/icons-material/DoNotStepOutlined";

<DoNotStepOutlinedIcon />

Do Not Step icon in Vue

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

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

Do Not Step icon in Angular

With Angular Material and the font from the HTML tab:

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

Do Not Step 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.do_not_step, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Do Not Step icon in Android

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

<!-- res/drawable/ic_do_not_step.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="m17.825 16.025-1.05-1.05 5.175-5.175 1.05 1.05-5.175 5.175Zm-1.75-1.75-1.05-1.05 4.125-4.125-5-5-4.125 4.125-1.05-1.05 5.175-5.175 7.1 7.1-5.175 5.175ZM20.15 22.6 13.95 16.4 10.6 19.75H.75v-2.875q0-.572 .321-1.012Q1.391 15.423 1.9 15.225q.425-.15 1.063-.475t1.337-.9l1.172 1.172Q5.6 15.15 5.755 15.15q.154 0 .27-.125 .125-.116 .125-.27 0-.155-.122-.282L4.95 13.37q.2-.17 .45-.42t.475-.525l1.074 1.074Q7.075 13.625 7.23 13.625q.154 0 .27-.125 .1-.1 .113-.262t-.109-.284L6.375 11.825q.225-.275 .438-.6t.287-.575l1.303 1.357q.115 .118 .269 .118 .153 0 .278-.125 .125-.125 .125-.287t-.1-.263L1.4 3.875l1.05-1.075L21.2 21.55l-1.05 1.05ZM2.3 18.25h7.675l2.925-2.925-2.6-2.6-3.325 3.325q-.475 .475-1.312 .475T4.375 16.05l-.25-.25q-.525 .3-.962 .5T2.3 16.675v1.575Zm8-5.525Zm2.9-1.325Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_do_not_step), contentDescription = "Do Not Step")

Do Not Step icon in SVG

npm install @material-symbols/svg-400

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

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

Do Not Step 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

NameDo Not Step
Ligaturedo_not_step
Code pointU+F19F
CategoryTravel
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/do_not_step.svg, do_not_step-fill.svg
FlutterSymbols.do_not_step (Material Icons: Icons.do_not_step)
MUI@mui/icons-material/DoNotStep
LicenseApache License 2.0 (© Google LLC)

Keywords

travelalertonoffdisabledslashenabledwarningstopmovementsafetydangercaution

Related icons