Snowshoeing icon

Snowshoeing is a Google Material Symbol from the Activities 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

snowshoeing_outlined_fill0_wght400.svg

Snowshoeing 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=snowshoeing" />

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

Snowshoeing icon in React

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

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

Snowshoeing 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 SnowshoeingOutlinedIcon from "@mui/icons-material/SnowshoeingOutlined";

<SnowshoeingOutlinedIcon />

Snowshoeing icon in Vue

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

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

Snowshoeing icon in Angular

With Angular Material and the font from the HTML tab:

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

Snowshoeing 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.snowshoeing, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Snowshoeing icon in Android

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

<!-- res/drawable/ic_snowshoeing.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="M8.875 23q-.375 0-.887-.35T6.95 21.65L4.125 18.175l.775-.65 1.5 1.85 2.725-2.025 1.8-9.075-2.55 1.15v3.325h-1.525v-4.325l4.425-1.875q.45-.2 .763-.275t.737-.075q.45 0 .913 .213T14.4 7.025l1.05 1.65q.8 1.25 1.913 1.9T19.875 11.25v1.5q-1.725-.05-2.962-.75T14.45 9.7l-1.025 3.9 2.3 2.075v6.35q.725-.05 1.25-.225t.85-.35q.075-.05 .15-.062t.125-.013q.25 0 .388 .15t.137 .35q0 .125-.062 .25t-.188 .2q-.45 .275-1.025 .475t-1.35 .2H12.375v-1h1.85v-5l-2.7-2.45-.85 3.6-3.325 2.425 .475 .55q.275 .3 .588 .525T9.075 22.025q.15 .075 .238 .2t.087 .3q0 .2-.162 .338T8.875 23Zm5.675-17.85q-.75 0-1.287-.537T12.725 3.325q0-.75 .538-1.287T14.55 1.5q.75 0 1.288 .538T16.375 3.325q0 .75-.537 1.288T14.55 5.15Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_snowshoeing), contentDescription = "Snowshoeing")

Snowshoeing icon in SVG

npm install @material-symbols/svg-400

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

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

Snowshoeing 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

NameSnowshoeing
Ligaturesnowshoeing
Code pointU+E514
CategoryActivities
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/snowshoeing.svg, snowshoeing-fill.svg
FlutterSymbols.snowshoeing (Material Icons: Icons.snowshoeing)
MUI@mui/icons-material/Snowshoeing
LicenseApache License 2.0 (© Google LLC)

Keywords

activitieshumaniconpersontravelgraphicpeoplebodysilhouettejourneyactivityequipment

Related icons