Door Add icon
The Door Add 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 Door Add 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 { DoorAdd24Regular, DoorAdd24Filled } from "@fluentui/react-icons";
export function Example() {
return <DoorAdd24Regular aria-label="Door Add" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_door_add_24_regular.svg" width="24" height="24" alt="Door Add"> 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.5 12C20.5376 12 23 14.4624 23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12ZM17.75 2C18.9926 2 20 3.00736 20 4.25V11.498C19.5258 11.3003 19.0232 11.157 18.5 11.0762V4.25C18.5 3.83579 18.1642 3.5 17.75 3.5H6.25C5.83579 3.5 5.5 3.83579 5.5 4.25V19.75C5.5 20.1642 5.83579 20.5 6.25 20.5H11.7334C12.0208 21.0512 12.3849 21.5556 12.8115 22H6.25C5.00736 22 4 20.9926 4 19.75V4.25C4 3.00736 5.00736 2 6.25 2H17.75ZM17.5 13.999C17.2239 13.999 17.0001 14.223 17 14.499V17H14.4951C14.2195 17.0003 13.9961 17.224 13.9961 17.5C13.9961 17.776 14.2195 17.9997 14.4951 18H17.001V20.5039C17.0012 20.7798 17.225 21.0038 17.501 21.0039C17.777 21.0039 18.0008 20.7799 18.001 20.5039V18H20.4971C20.7727 17.9997 20.9961 17.776 20.9961 17.5C20.9961 17.224 20.7727 17.0003 20.4971 17H18V14.499C17.9999 14.223 17.7761 13.999 17.5 13.999ZM8.5 10.25C9.32843 10.25 10 10.9216 10 11.75C10 12.5784 9.32843 13.25 8.5 13.25C7.67157 13.25 7 12.5784 7 11.75C7 10.9216 7.67157 10.25 8.5 10.25Z" 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/door_add_24_regular.svg";Details
| Name | Door Add |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_door_add_24_regular.svg |
| Filled file | ic_fluent_door_add_24_filled.svg |
| React components | DoorAdd24Regular, DoorAdd24Filled |
| License | MIT (© Microsoft Corporation) |