Tree Evergreen icon

Used to represent nature themed events and topics. The Tree Evergreen icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 px grid. 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_tree_evergreen_20_regular.svg

Tree Evergreen icon in React

npm install @fluentui/react-icons

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

export function Example() {
  return <TreeEvergreen20Regular aria-label="Tree Evergreen" />;
}

Tree Evergreen icon in SVG

npm install @fluentui/svg-icons

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

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

Tree Evergreen icon in Blazor

Microsoft's Fluent UI Blazor icons package:

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

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

Tree Evergreen icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.tree_evergreen_20_regular)

Tree Evergreen 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="&#xEDA3;" FontSize="20" />

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

Tree Evergreen 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_tree_evergreen_20_regular"></i>

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

Tree Evergreen icon in Android

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

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

// Kotlin
R.drawable.ic_fluent_tree_evergreen_20_regular

Tree Evergreen icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .treeEvergreen20Regular)

Tree Evergreen 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 Tree Evergreen 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 { TreeEvergreen20Regular, TreeEvergreen20Filled } from "@fluentui/react-icons";

export function Example() {
  return <TreeEvergreen20Regular aria-label="Tree Evergreen" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_tree_evergreen_20_regular.svg" width="20" height="20" alt="Tree Evergreen">

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="M10.62 2.21a1 1 0 0 0-1.24 0l-3.3 2.61A1.5 1.5 0 0 0 6 7.14l-1.46 1.2a1.5 1.5 0 0 0 .51 2.6l-1.59 1.48A1.49 1.49 0 0 0 4.5 15H8v1.75c0 .69.57 1.25 1.26 1.25h1.5c.69 0 1.25-.56 1.25-1.25V15h3.5c1.35 0 2-1.66 1.02-2.58l-1.59-1.48a1.5 1.5 0 0 0 .52-2.6l-1.47-1.2a1.5 1.5 0 0 0-.05-2.32zM11 15v1.75q-.02.23-.25.25h-1.5a.25.25 0 0 1-.25-.25V15zM10 3l3.3 2.6a.5.5 0 0 1-.28.9.5.5 0 0 0-.3.88l2.09 1.73a.5.5 0 0 1-.32.89h-.76a.5.5 0 0 0-.34.86l2.45 2.3c.32.3.1.84-.34.84h-11a.49.49 0 0 1-.34-.85l2.44-2.29a.5.5 0 0 0-.34-.86H5.5a.5.5 0 0 1-.31-.89l2.1-1.73a.5.5 0 0 0-.3-.88.5.5 0 0 1-.3-.9z"/></svg>

Details

NameTree Evergreen
StylesRegular (outlined), Filled
Sizes20 px
Regular (outlined) fileic_fluent_tree_evergreen_20_regular.svg
Filled fileic_fluent_tree_evergreen_20_filled.svg
React (Regular)TreeEvergreen20Regular
React (Filled)TreeEvergreen20Filled
LicenseMIT (© Microsoft Corporation)

Keywords

natureparkeventemoji

Related icons