Festival icon

Festival is a Google Material Symbol from the Travel 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

festival_outlined_fill0_wght400.svg

Festival 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=festival" />

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

Festival icon in React

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

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

Festival 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 FestivalOutlinedIcon from "@mui/icons-material/FestivalOutlined";

<FestivalOutlinedIcon />

Festival icon in Vue

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

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

Festival icon in Angular

With Angular Material and the font from the HTML tab:

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

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

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

Festival icon in Android

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

<!-- res/drawable/ic_festival.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.125 22q.575-1.675 .875-3.625t.375-4.3q-1.05-.325-1.712-1.3T1 10.6v-1.5q2.875-1 5.875-2.962T12 2q2.125 2.175 5.125 4.138T23 9.1v1.5q0 1.2-.65 2.175t-1.7 1.3q.05 2.25 .363 4.225T21.9 22H2.125Zm2.625-12.9h14.5q-1.825-.925-3.625-2.175T12 4.05q-1.725 1.55-3.55 2.825t-3.7 2.225Zm9.825 3.625q.8 0 1.3-.637t.5-1.488H12.75q0 .85 .513 1.488T14.575 12.725Zm-5.125 0q.8 0 1.3-.637t.5-1.488H7.625q0 .85 .513 1.488T9.45 12.725Zm-5.125 0q.8 0 1.3-.637t.5-1.488H2.5q0 .85 .513 1.488T4.325 12.725Zm-.2 7.775h3.325q.2-1.275 .35-2.775t.275-3.725q-.275-.125-.637-.437T6.95 12.975q-.425 .5-.937 .8T4.875 14.2q-.075 1.8-.262 3.338T4.125 20.5Zm4.875 0h6.025q-.2-1.3-.325-2.8t-.225-3.525q-.825-.05-1.512-.412T11.925 12.775q-.35 .625-.975 .988T9.55 14.175q-.1 1.6-.212 3.175T9 20.5Zm7.55 0h3.35q-.35-1.525-.525-3.087T19.15 14.2q-.6-.125-1.062-.412T17.2 12.975q-.25 .35-.6 .625t-.65 .4q.075 1.425 .213 3.013T16.55 20.5Zm3.15-7.775q.8 0 1.3-.637t.5-1.488H17.875q0 .85 .513 1.488T19.7 12.725Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_festival), contentDescription = "Festival")

Festival icon in SVG

npm install @material-symbols/svg-400

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

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

Festival 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

NameFestival
Ligaturefestival
Code pointU+EA68
CategoryTravel
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/festival.svg, festival-fill.svg
FlutterSymbols.festival (Material Icons: Icons.festival)
MUI@mui/icons-material/Festival
LicenseApache License 2.0 (© Google LLC)

Keywords

travelmapsentertainmentmusicsocialscheduleevent

Related icons