Map Drive icon
Used to represent sharing drive location. The Map Drive 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 Map Drive 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 { MapDrive24Regular, MapDrive24Filled } from "@fluentui/react-icons";
export function Example() {
return <MapDrive24Regular aria-label="Map Drive" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_map_drive_24_regular.svg" width="24" height="24" alt="Map Drive"> 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.9977 8.00228C18.5512 8.00228 19 7.55353 19 6.99998C19 6.44642 18.5512 5.99768 17.9977 5.99768C17.4441 5.99768 16.9954 6.44642 16.9954 6.99998C16.9954 7.55353 17.4441 8.00228 17.9977 8.00228ZM4.25 3C3.00736 3 2 4.00736 2 5.25V10.25C2 10.6642 2.33579 11 2.75 11H11.25V13.001H10.2506C9.8364 13.001 9.50061 13.3368 9.50061 13.751V16.0045H7.75098C7.33676 16.0045 7.00098 16.3403 7.00098 16.7545V17.5H2.75C2.33579 17.5 2 17.8358 2 18.25C2 18.6642 2.33579 19 2.75 19H7.00098V20.2534C7.00098 20.6676 7.33676 21.0034 7.75098 21.0034H16.2491C16.6633 21.0034 16.9991 20.6676 16.9991 20.2534V19H21.25C21.6642 19 22 18.6642 22 18.25C22 17.8358 21.6642 17.5 21.25 17.5H16.9991V16.7545C16.9991 16.3403 16.6633 16.0045 16.2491 16.0045H14.4994V13.751C14.4994 13.3368 14.1637 13.001 13.7494 13.001H12.75V11H21.25C21.6642 11 22 10.6642 22 10.25V5.25C22 4.00736 20.9926 3 19.75 3H4.25ZM3.5 5.25C3.5 4.83579 3.83579 4.5 4.25 4.5H19.75C20.1642 4.5 20.5 4.83579 20.5 5.25V9.5H3.5V5.25ZM11.0006 14.501H12.9994V16.7545C12.9994 17.1688 13.3352 17.5045 13.7494 17.5045H15.4991V19.5034H8.50098V17.5045H10.2506C10.6648 17.5045 11.0006 17.1688 11.0006 16.7545V14.501Z" 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/map_drive_24_regular.svg";Details
| Name | Map Drive |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_map_drive_24_regular.svg |
| Filled file | ic_fluent_map_drive_24_filled.svg |
| React components | MapDrive24Regular, MapDrive24Filled |
| License | MIT (© Microsoft Corporation) |