Conference Room icon
Used for meeting room icons. Old style, there's also Door to use that fits in the set better. The Conference Room 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 Conference Room 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 { ConferenceRoom24Regular, ConferenceRoom24Filled } from "@fluentui/react-icons";
export function Example() {
return <ConferenceRoom24Regular aria-label="Conference Room" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_conference_room_24_regular.svg" width="24" height="24" alt="Conference Room"> 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="M10.8214 2.00312L10.9218 2.01982L19.4218 4.01982C19.7267 4.09156 19.9511 4.34361 19.993 4.64702L20 4.74988V19.2499C20 19.5631 19.8061 19.8393 19.5203 19.9495L19.4218 19.9799L10.9218 21.9799C10.4846 22.0828 10.0645 21.7822 10.0067 21.3515L10 21.2499V2.74988C10 2.33534 10.3313 2.01368 10.7225 2L10.8214 2.00312ZM11.5 3.69683V20.3029L18.5 18.6559V5.34389L11.5 3.69683ZM9 3.99988V5.49988H5.5V18.4999H9V19.9999H4.75C4.3703 19.9999 4.05651 19.7177 4.00685 19.3517L4 19.2499V4.74988C4 4.37019 4.28215 4.05639 4.64823 4.00673L4.75 3.99988H9ZM14 10.9999C14.5523 10.9999 15 11.4476 15 11.9999C15 12.5522 14.5523 12.9999 14 12.9999C13.4477 12.9999 13 12.5522 13 11.9999C13 11.4476 13.4477 10.9999 14 10.9999Z" 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/conference_room_24_regular.svg";Details
| Name | Conference Room |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_conference_room_24_regular.svg |
| Filled file | ic_fluent_conference_room_24_filled.svg |
| React components | ConferenceRoom24Regular, ConferenceRoom24Filled |
| License | MIT (© Microsoft Corporation) |