Cruelty Free icon

Cruelty Free 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

cruelty_free_outlined_fill0_wght400.svg

Cruelty Free 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=cruelty_free" />

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

Cruelty Free icon in React

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

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

Cruelty Free 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 CrueltyFreeOutlinedIcon from "@mui/icons-material/CrueltyFreeOutlined";

<CrueltyFreeOutlinedIcon />

Cruelty Free icon in Vue

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

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

Cruelty Free icon in Angular

With Angular Material and the font from the HTML tab:

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

Cruelty Free 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.cruelty_free, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Cruelty Free icon in Android

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

<!-- res/drawable/ic_cruelty_free.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="M9.5 22q-1.875 0-3.187-1.312T5 17.5q0-.8 .363-1.512T6.575 14.425q.375-.375 .6-.625t.475-.55q-1.275-1.95-1.962-4.087T5 5q0-1.45 .525-2.225t1.475-.775q1.05 0 2.175 1.025t1.975 2.725q.25 .5 .463 1.038T12 7.975q.175-.65 .388-1.187T12.85 5.75q.85-1.7 1.975-2.725t2.175-1.025q.95 0 1.475 .775t.525 2.225q0 2.025-.687 4.163T16.35 13.25q.25 .3 .475 .55t.6 .625q.85 .85 1.213 1.563T19 17.5q0 1.875-1.312 3.188T14.5 22q-1.125 0-1.812-.25L12 21.5l-.687 .25Q10.625 22 9.5 22Zm0-1.5q.425 0 1-.137t1.225-.413q-.275-.125-.5-.425t-.225-.525q0-.2 .288-.35t.712-.15q.425 0 .713 .15t.287 .35q0 .225-.225 .525t-.5 .425q.65 .275 1.225 .413t1 .137q1.25 0 2.125-.875t.875-2.125q0-.55-.3-1.075t-.875-1.025q-.275-.25-.612-.6T15.1 14.1q-.8-1.05-1.375-1.325t-1.725-.275q-1.15 0-1.725 .275t-1.375 1.325q-.275 .35-.612 .7T7.675 15.4q-.575 .5-.875 1.025t-.3 1.075q0 1.25 .875 2.125t2.125 .875Zm1-3.75q-.2 0-.35-.225t-.15-.525q0-.3 .15-.525t.35-.225q.2 0 .35 .225t.15 .525q0 .3-.15 .525t-.35 .225Zm3 0q-.2 0-.35-.225t-.15-.525q0-.3 .15-.525t.35-.225q.2 0 .35 .225t.15 .525q0 .3-.15 .525t-.35 .225ZM8.675 12.075q.525-.5 1.038-.737T10.975 11.025q-.125-1.275-.425-2.487T9.775 6.375q-.575-1.175-1.325-1.962T6.875 3.35q-.2 .375-.287 .8t-.088 .85q0 1.8 .563 3.613T8.675 12.075Zm6.65 0q1.05-1.65 1.613-3.462T17.5 5q0-.425-.087-.85T17.125 3.35q-.825 .275-1.575 1.063T14.225 6.375q-.475 .95-.775 2.163T13.025 11.025q.75 .075 1.263 .313T15.325 12.075Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_cruelty_free), contentDescription = "Cruelty Free")

Cruelty Free icon in SVG

npm install @material-symbols/svg-400

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

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

Cruelty Free 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

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

Keywords

socialnature

Related icons