Oval icon

Used in creation spaces as a shape. The Oval 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 Oval 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 { Oval24Regular, Oval24Filled } from "@fluentui/react-icons";

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

Use it in HTML

Reference the SVG file directly:

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

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="M2 12C2 7.58172 5.58172 4 10 4H14C18.4183 4 22 7.58172 22 12C22 16.4183 18.4183 20 14 20H10C5.58172 20 2 16.4183 2 12ZM10 5.5C6.41015 5.5 3.5 8.41015 3.5 12C3.5 15.5899 6.41015 18.5 10 18.5H14C17.5899 18.5 20.5 15.5899 20.5 12C20.5 8.41015 17.5899 5.5 14 5.5H10Z" 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/oval_24_regular.svg";

Details

NameOval
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_oval_24_regular.svg
Filled fileic_fluent_oval_24_filled.svg
React componentsOval24Regular, Oval24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

createshapeeditrounded

Related icons