Door Tag icon
Used to represent travel or booking a hotel. The Door Tag 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 Tag 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 { DoorTag24Regular, DoorTag24Filled } from "@fluentui/react-icons";
export function Example() {
return <DoorTag24Regular aria-label="Door Tag" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_door_tag_24_regular.svg" width="24" height="24" alt="Door Tag"> 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 17.5C9.33579 17.5 9 17.8358 9 18.25C9 18.6642 9.33579 19 9.75 19H14.25C14.6642 19 15 18.6642 15 18.25C15 17.8358 14.6642 17.5 14.25 17.5H9.75ZM10.7989 7.10115C11.0763 6.73183 11.5108 6.5 12 6.5C12.8284 6.5 13.5 7.17157 13.5 8C13.5 8.82843 12.8284 9.5 12 9.5H8C6.89543 9.5 6 10.3954 6 11.5V20C6 21.1046 6.89543 22 8 22H16C17.1046 22 18 21.1046 18 20V8C18 4.68629 15.3137 2 12 2C10.0358 2 8.292 2.94619 7.20114 4.39812C6.45472 5.3916 6.655 6.80207 7.64848 7.54849C8.64196 8.29492 10.0524 8.09464 10.7989 7.10115ZM12 5C11.0217 5 10.1498 5.4678 9.59962 6.20014C9.35081 6.5313 8.88066 6.59806 8.54949 6.34925C8.21833 6.10045 8.15157 5.63029 8.40038 5.29913C9.22052 4.20753 10.5281 3.5 12 3.5C14.4853 3.5 16.5 5.51472 16.5 8V20C16.5 20.2761 16.2761 20.5 16 20.5H8C7.72386 20.5 7.5 20.2761 7.5 20V11.5C7.5 11.2239 7.72386 11 8 11H12C13.6569 11 15 9.65685 15 8C15 6.34315 13.6569 5 12 5Z" 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_tag_24_regular.svg";Details
| Name | Door Tag |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_door_tag_24_regular.svg |
| Filled file | ic_fluent_door_tag_24_filled.svg |
| React components | DoorTag24Regular, DoorTag24Filled |
| License | MIT (© Microsoft Corporation) |