Gynecology icon

Gynecology is a Google Material Symbol from the Social 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.

Outlined, unfilled, weight 400

gynecology_outlined_fill0_wght400.svg

Gynecology 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,[email protected],100..700,0..1,-50..200&icon_names=gynecology" />

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

Gynecology icon in React

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

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

Gynecology icon in Vue

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

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

Gynecology icon in Angular

With Angular Material and the font from the HTML tab:

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

Gynecology 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.gynecology, fill: 0, weight: 400)

Gynecology icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/gynecology.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="m9.375 21.45-.8-1.55q-.198-.403-.287-.829-.088-.426-.088-.876 0-.545 .151-1.064Q8.501 16.612 8.825 16.15q.2-.325 .325-.669 .125-.345 .125-.731 0-.427-.15-.801Q8.975 13.575 8.775 13.2q-.2-.45-.362-.925Q8.25 11.799 8.25 11.3v-4.05q0-.729-.462-1.24Q7.325 5.5 6.625 5.5q-.65 0-1.112 .413T5 6.925q.872 .327 1.436 1.094Q7 8.787 7 9.742 7 11 6.125 11.875t-2.125 .875q-1.25 0-2.125-.875t-.875-2.125q0-1.125 .713-1.95t1.787-1q.1-1.2 .999-2 .898-.8 2.126-.8 .192 0 .383 .025 .192 .025 .36 .075 1.057-.625 2.227-.862 1.169-.238 2.399-.238 1.206 0 2.381 .238 1.175 .237 2.232 .862 .168-.05 .36-.075 .191-.025 .383-.025 1.225 0 2.125 .788t1 1.987q1.075 .175 1.8 1.013t.725 1.962q0 1.25-.875 2.125t-2.125 .875q-1.25 0-2.125-.875t-.875-2.125q0-.975 .55-1.737t1.425-1.088q-.05-.625-.517-1.025-.466-.4-1.108-.4-.678 0-1.139 .51Q15.75 6.521 15.75 7.25v4.05q0 .499-.175 .974-.175 .475-.4 .926-.175 .374-.312 .749-.138 .374-.138 .802 0 .374 .113 .737Q14.95 15.85 15.15 16.15q.325 .45 .488 .98 .162 .53 .162 1.072 0 .448-.106 .873Q15.588 19.499 15.4 19.9l-.8 1.55-1.35-.675 .775-1.55q.125-.25 .2-.503 .075-.253 .075-.534 0-.338-.1-.638t-.3-.575q-.35-.5-.512-1.056t-.163-1.136q0-.533 .163-1.02T13.8 12.8q.175-.35 .313-.729Q14.25 11.693 14.25 11.3v-4.06q0-.641 .225-1.216Q14.7 5.45 15.1 5.025q-.725-.275-1.511-.4-.787-.125-1.588-.125-.801 0-1.588 .125T8.9 5.025q.4 .425 .625 .999 .225 .575 .225 1.216V11.3q0 .4 .125 .775t.325 .725q.225 .475 .4 .963t.175 1.014q0 .573-.181 1.135Q10.413 16.473 10.075 16.975q-.2 .275-.287 .581t-.088 .641q0 .278 .063 .528t.187 .5l.775 1.55-1.35 .675ZM5.063 10.813Q5.5 10.375 5.5 9.75t-.437-1.062Q4.625 8.25 4 8.25t-1.062 .438Q2.5 9.125 2.5 9.75t.438 1.063Q3.375 11.25 4 11.25t1.063-.437Zm16 0Q21.5 10.375 21.5 9.75t-.437-1.062Q20.625 8.25 20 8.25t-1.062 .438Q18.5 9.125 18.5 9.75t.438 1.063Q19.375 11.25 20 11.25t1.063-.437ZM20 9.75Zm-16 0Z" />
</vector>

Gynecology icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/gynecology.svg" width="24" height="24" alt="Gynecology">

Gynecology 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

NameGynecology
Ligaturegynecology
Code pointU+E0F4
CategorySocial
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/gynecology.svg, gynecology-fill.svg
FlutterSymbols.gynecology
LicenseApache License 2.0 (© Google LLC)

Keywords

socialhumanhealthbodymedicalhealthcarehospitalmedicineclinicdoctorcyclewellnessanatomy

Related icons