Doctor icon
Used to represent doctors, hospitals, and general medical scenarios. The Doctor 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.
Use the Doctor 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 { Doctor24Regular, Doctor24Filled } from "@fluentui/react-icons";
export function Example() {
return <Doctor24Regular aria-label="Doctor" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_doctor_24_regular.svg" width="24" height="24" alt="Doctor"> 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="M9.75 4.5C9.61193 4.5 9.5 4.61193 9.5 4.75V8.75C9.5 9.16421 9.16421 9.5 8.75 9.5H4.75C4.61193 9.5 4.5 9.61193 4.5 9.75V14.25C4.5 14.3881 4.61193 14.5 4.75 14.5H8.75C9.16421 14.5 9.5 14.8358 9.5 15.25V19.25C9.5 19.3881 9.61193 19.5 9.75 19.5H14.25C14.3881 19.5 14.5 19.3881 14.5 19.25V15.25C14.5 14.8358 14.8358 14.5 15.25 14.5H19.25C19.3881 14.5 19.5 14.3881 19.5 14.25V9.75C19.5 9.61193 19.3881 9.5 19.25 9.5H15.25C14.8358 9.5 14.5 9.16421 14.5 8.75V4.75C14.5 4.61193 14.3881 4.5 14.25 4.5H9.75ZM8 4.75C8 3.7835 8.7835 3 9.75 3H14.25C15.2165 3 16 3.7835 16 4.75V8H19.25C20.2165 8 21 8.7835 21 9.75V14.25C21 15.2165 20.2165 16 19.25 16H16V19.25C16 20.2165 15.2165 21 14.25 21H9.75C8.7835 21 8 20.2165 8 19.25V16H4.75C3.7835 16 3 15.2165 3 14.25V9.75C3 8.7835 3.7835 8 4.75 8H8V4.75Z" 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/doctor_24_regular.svg";Details
| Name | Doctor |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_doctor_24_regular.svg |
| Filled file | ic_fluent_doctor_24_filled.svg |
| React components | Doctor24Regular, Doctor24Filled |
| License | MIT (© Microsoft Corporation) |