Quiz icon

Used to represent a quiz in Forms. The Quiz icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 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

Use the Quiz 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 { Quiz24Regular, Quiz24Filled } from "@fluentui/react-icons";

export function Example() {
  return <Quiz24Regular aria-label="Quiz" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_quiz_24_regular.svg" width="24" height="24" alt="Quiz">

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

<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.75 3C19.5449 3 21 4.45507 21 6.25V17.75C21 19.5449 19.5449 21 17.75 21H6.25C4.45507 21 3 19.5449 3 17.75V6.25C3 4.45507 4.45507 3 6.25 3H17.75ZM6.25 4.5C5.2835 4.5 4.5 5.2835 4.5 6.25V17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H6.25ZM17.25 16.5C17.6642 16.5 18 16.8358 18 17.25C18 17.6642 17.6642 18 17.25 18H6.75C6.33579 18 6 17.6642 6 17.25C6.00001 16.8358 6.33579 16.5 6.75 16.5H17.25ZM17.25 13.499C17.6642 13.499 18 13.8348 18 14.249C18 14.6632 17.6642 14.999 17.25 14.999H6.75C6.33579 14.999 6 14.6632 6 14.249C6.00001 13.8348 6.33579 13.499 6.75 13.499H17.25ZM10 4.99609C10.3046 4.99615 10.5791 5.18087 10.6943 5.46289L12.9414 10.9658C13.0979 11.3492 12.9146 11.7867 12.5312 11.9434C12.1478 12.1 11.7094 11.9157 11.5527 11.5322L11.1299 10.4971H8.86816L8.44434 11.5332C8.2875 11.9165 7.84916 12.1001 7.46582 11.9434C7.0826 11.7865 6.89893 11.3482 7.05566 10.9648L9.30566 5.46289C9.42094 5.18096 9.69542 4.9961 10 4.99609ZM15.75 4.99609C16.1641 4.99609 16.4999 5.33201 16.5 5.74609V6.99609H17.75C18.1641 6.99609 18.4998 7.33205 18.5 7.74609C18.5 8.16031 18.1642 8.49609 17.75 8.49609H16.5V9.74609C16.5 10.1603 16.1642 10.4961 15.75 10.4961C15.3358 10.4961 15 10.1603 15 9.74609V8.49609H13.75C13.3358 8.49609 13 8.16031 13 7.74609C13.0002 7.33205 13.3359 6.99609 13.75 6.99609H15V5.74609C15.0001 5.33201 15.3359 4.99609 15.75 4.99609ZM9.48145 8.99707H10.5176L10 7.72852L9.48145 8.99707Z" fill="currentColor"/></svg>

Use it from the SVG package

Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:

npm install @fluentui/svg-icons

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

Details

NameQuiz
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_quiz_24_regular.svg
Filled fileic_fluent_quiz_24_filled.svg
React componentsQuiz24Regular, Quiz24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

quizformsquestion

Related icons