Animal Rabbit Off icon

Used to represent cruelty free practices and events. The Animal Rabbit Off icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 20 to 32 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.

Regular (outlined)

SVG

Filled

SVG

Every size and style

Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.

Regular, 20 px

ic_fluent_animal_rabbit_off_20_regular.svg

Animal Rabbit Off icon in React

npm install @fluentui/react-icons

import { AnimalRabbitOff20Regular } from "@fluentui/react-icons";

export function Example() {
  return <AnimalRabbitOff20Regular aria-label="Animal Rabbit Off" />;
}

Animal Rabbit Off icon in SVG

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/animal_rabbit_off_20_regular.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/animal_rabbit_off_20_regular.svg" width="20" height="20" alt="Animal Rabbit Off">

Animal Rabbit Off icon in Blazor

Microsoft's Fluent UI Blazor icons package:

dotnet add package Microsoft.FluentUI.AspNetCore.Components.Icons

<FluentIcon Value="@(new Icons.Regular.Size20.AnimalRabbitOff())" />

Animal Rabbit Off icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.animal_rabbit_off_20_regular)

Animal Rabbit Off icon in WinUI / WPF

Add FluentSystemIcons-Regular.ttf from Microsoft's repository to your app, then use the glyph:

<!-- WinUI 3 (font in Assets/Fonts) -->
<FontIcon FontFamily="ms-appx:///Assets/Fonts/FluentSystemIcons-Regular.ttf#FluentSystemIcons-Regular" Glyph="&#xEEE4;" FontSize="20" />

<!-- WPF (font in Fonts/, Build Action: Resource) -->
<TextBlock FontFamily="pack://application:,,,/Fonts/#FluentSystemIcons-Regular" Text="&#xEEE4;" FontSize="20" />

Animal Rabbit Off icon in Icon font

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons@9cf8af0f95a555918a60b8147a2f33a6a1248442/fonts/FluentSystemIcons-Regular.css">

<i class="icon-ic_fluent_animal_rabbit_off_20_regular"></i>

/* or use the code point in your own CSS */
.icon::before {
  font-family: "FluentSystemIcons-Regular";
  content: "\eee4";
  font-size: 20px;
}

Animal Rabbit Off icon in Android

// build.gradle
implementation("com.microsoft.design:fluent-system-icons:1.1.341@aar")

<!-- layout XML -->
<ImageView android:src="@drawable/ic_fluent_animal_rabbit_off_20_regular" />

// Kotlin
R.drawable.ic_fluent_animal_rabbit_off_20_regular

Animal Rabbit Off icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .animalRabbitOff20Regular)

Animal Rabbit Off 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='20' height='20' viewBox='0 0 20 20'>…</svg>")

Use the Animal Rabbit Off icon in React

Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.

npm install @fluentui/react-icons

import { AnimalRabbitOff20Regular, AnimalRabbitOff20Filled } from "@fluentui/react-icons";

export function Example() {
  return <AnimalRabbitOff20Regular aria-label="Animal Rabbit Off" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_animal_rabbit_off_20_regular.svg" width="20" height="20" alt="Animal Rabbit Off">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M2.85 2.15a.5.5 0 1 0-.7.7L7.3 8.01q-.37.03-.7.12A2.5 2.5 0 1 0 4 11.95v.93c0 1.18.95 2.13 2.12 2.13h6.51q.71-.01 1.26-.41l3.26 3.25a.5.5 0 0 0 .7-.7zm10.32 11.73q-.24.13-.54.13h-1.62v-.1C11 12.78 9.99 12 8.89 12H7.5a.5.5 0 0 0 0 1h1.39c.69 0 1.12.46 1.12.91v.1H6.12c-.62 0-1.12-.5-1.12-1.13v-1.33A2.55 2.55 0 0 1 7.54 9h.75zM5.66 8.55a3.6 3.6 0 0 0-1.6 2.38 1.5 1.5 0 1 1 1.6-2.38m10.71 3.48c-.44.44-1.02.65-1.6.62l.9.9q.79-.2 1.41-.82a3.15 3.15 0 0 0 0-4.44l-4.22-4.22c-.59-.59-1.55-.59-2.14 0-.6.6-.6 1.56 0 2.15l1.34 1.33q-.18.24-.3.5a4 4 0 0 0-.54-.05h-1.1l1 1h.1q.35 0 .68.1l.42.11.18-.4c.1-.26.26-.57.47-.79l.5-.48-2.04-2.02a.5.5 0 0 1 0-.74c.2-.2.52-.2.72 0L16.38 9c.84.84.84 2.2 0 3.04"/></svg>

Details

NameAnimal Rabbit Off
StylesRegular (outlined), Filled
Sizes20 px, 32 px
Regular (outlined) fileic_fluent_animal_rabbit_off_20_regular.svg
Filled fileic_fluent_animal_rabbit_off_20_filled.svg
React (Regular)AnimalRabbitOff20Regular, AnimalRabbitOff32Regular
React (Filled)AnimalRabbitOff20Filled, AnimalRabbitOff32Filled
LicenseMIT (© Microsoft Corporation)

Keywords

petcreaturefastquickhopcruelty free

Related icons