Kayaking icon

Kayaking 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

kayaking_outlined_fill0_wght400.svg

Kayaking 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=kayaking" />

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

Kayaking icon in React

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

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

Kayaking 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 KayakingOutlinedIcon from "@mui/icons-material/KayakingOutlined";

<KayakingOutlinedIcon />

Kayaking icon in Vue

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

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

Kayaking icon in Angular

With Angular Material and the font from the HTML tab:

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

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

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

Kayaking icon in Android

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

<!-- res/drawable/ic_kayaking.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="M2 23v-1.5h1q.775 0 1.538-.262T6 20.275q.7 .7 1.463 .963T9 21.5q.75 0 1.538-.275t1.462-.95q.725 .7 1.475 .963t1.525 .262q.75 0 1.538-.275t1.462-.95q.675 .675 1.463 .95t1.537 .275h1v1.5h-1q-.725 0-1.487-.212T18 22q-.75 .575-1.512 .788T15 23q-.725 0-1.487-.212T12 22q-.75 .575-1.512 .788T9 23q-.725 0-1.487-.212T6 22q-.75 .575-1.512 .788T3 23H2Zm7-3.9q-.825 0-1.625-.45t-1.375-1.175q-.325 .35-.775 .688T4.35 18.775q-.975-.2-2.112-.537T0 17.5q1.325-.525 3.438-1.05T7.325 15.625l1.4-4.475q.2-.7 .85-.975t1.275 .05l2.65 1.4 3.025-1.6 1.75-4.05-.5-1.325 1.2-2.625 2.725 1.225-1.175 2.625-1.325 .5-3.9 9.075q2.275 .275 4.775 .875t3.925 1.175q-1.1 .4-2.237 .738T19.65 18.775q-.425-.275-.875-.612T18 17.475q-.575 .725-1.375 1.175t-1.625 .45q-.825 0-1.625-.45t-1.375-1.175q-.575 .725-1.375 1.175t-1.625 .45Zm5.225-3.775 1.3-3.1-2.025 1.05-1.9-.95-.9 2.925h1.3q.575 0 1.113 .013T14.225 15.325ZM10.713 8.613Q10.175 8.075 10.175 7.325t.538-1.287Q11.25 5.5 12 5.5t1.288 .538Q13.825 6.575 13.825 7.325t-.537 1.288Q12.75 9.15 12 9.15t-1.287-.537Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_kayaking), contentDescription = "Kayaking")

Kayaking icon in SVG

npm install @material-symbols/svg-400

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

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

Kayaking 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

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

Keywords

activitieshumanpersontravelpeoplebodyentertainmentsocialtransportationvehicleactivityleisure

Related icons