Pedal Bike icon

Pedal Bike is a Google Material Symbol from the Transit 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

pedal_bike_outlined_fill0_wght400.svg

Pedal Bike 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=pedal_bike" />

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

Pedal Bike icon in React

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

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

Pedal Bike 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 PedalBikeOutlinedIcon from "@mui/icons-material/PedalBikeOutlined";

<PedalBikeOutlinedIcon />

Pedal Bike icon in Vue

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

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

Pedal Bike icon in Angular

With Angular Material and the font from the HTML tab:

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

Pedal Bike 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.pedal_bike, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Pedal Bike icon in Android

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

<!-- res/drawable/ic_pedal_bike.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="M4.85 20q-2.025 0-3.437-1.425T0 15.125q0-2.025 1.426-3.437T4.875 10.275q1.775 0 3.113 1.138T9.6 14.3h1.275l-2.05-5.8h-1.825v-1.5h4.7v1.5h-1.3l.65 1.775h5.55l-1.775-4.775H12.2v-1.5h2.475q.6 0 1.013 .275t.612 .825l1.9 5.175h.95q2.013 0 3.432 1.406Q24 13.087 24 15.081 24 17.1 22.594 18.55T19.15 20q-1.79 0-3.145-1.2T14.35 15.8H9.6q-.275 1.8-1.612 3T4.85 20Zm0-1.5q1.2 0 2.088-.775t1.187-1.925H5.15v-1.5h2.975q-.3-1.125-1.2-1.825t-2.05-.7q-1.4 0-2.387 .975T1.5 15.125q0 1.406 .975 2.391Q3.45 18.5 4.85 18.5Zm7.625-4.2h1.9q.1-.575 .388-1.275t.787-1.25H11.575l.9 2.525Zm6.675 4.2q1.4 0 2.375-.984 .975-.985 .975-2.391 0-1.4-.975-2.375t-2.375-.975h-.4l.975 2.825-1.4 .475-1.075-2.8q-.725 .425-1.087 1.2T15.8 15.125q0 1.406 .975 2.391Q17.75 18.5 19.15 18.5ZM4.825 15.125Zm14.325 0Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_pedal_bike), contentDescription = "Pedal Bike")

Pedal Bike icon in SVG

npm install @material-symbols/svg-400

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

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

Pedal Bike 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

NamePedal Bike
Ligaturepedal_bike
Code pointU+EB29
CategoryTransit
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/pedal_bike.svg, pedal_bike-fill.svg
FlutterSymbols.pedal_bike (Material Icons: Icons.pedal_bike)
MUI@mui/icons-material/PedalBike
LicenseApache License 2.0 (© Google LLC)

Keywords

transithumantravelmapsframetransportationvehiclemovementcarpathautomobileroute

Related icons