Drive Train icon
Used for a more technical view of a car underside. The Drive Train 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 Drive Train 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 { DriveTrain24Regular, DriveTrain24Filled } from "@fluentui/react-icons";
export function Example() {
return <DriveTrain24Regular aria-label="Drive Train" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_drive_train_24_regular.svg" width="24" height="24" alt="Drive Train"> 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="M5.5 3C4.11929 3 3 4.11929 3 5.5V8.5C3 9.88071 4.11929 11 5.5 11C6.88071 11 8 9.88071 8 8.5V8H10.2676C10.4895 8.38362 10.8352 8.6867 11.25 8.85462V15.1454C10.8352 15.3133 10.4895 15.6164 10.2676 16H8V15.5C8 14.1193 6.88071 13 5.5 13C4.11929 13 3 14.1193 3 15.5V18.5C3 19.8807 4.11929 21 5.5 21C6.88071 21 8 19.8807 8 18.5V17.5H10.063C10.285 18.3626 11.0681 19 12 19C12.9319 19 13.715 18.3626 13.937 17.5H16V18.5C16 19.8807 17.1193 21 18.5 21C19.8807 21 21 19.8807 21 18.5V15.5C21 14.1193 19.8807 13 18.5 13C17.1193 13 16 14.1193 16 15.5V16H13.7324C13.5105 15.6164 13.1648 15.3133 12.75 15.1454V8.85462C13.1648 8.6867 13.5105 8.38362 13.7324 8H16V8.5C16 9.88071 17.1193 11 18.5 11C19.8807 11 21 9.88071 21 8.5V5.5C21 4.11929 19.8807 3 18.5 3C17.1193 3 16 4.11929 16 5.5V6.5H13.937C13.715 5.63739 12.9319 5 12 5C11.0681 5 10.285 5.63739 10.063 6.5H8V5.5C8 4.11929 6.88071 3 5.5 3ZM4.5 5.5C4.5 4.94772 4.94772 4.5 5.5 4.5C6.05228 4.5 6.5 4.94772 6.5 5.5V8.5C6.5 9.05228 6.05228 9.5 5.5 9.5C4.94772 9.5 4.5 9.05228 4.5 8.5V5.5ZM5.5 14.5C6.05228 14.5 6.5 14.9477 6.5 15.5V18.5C6.5 19.0523 6.05228 19.5 5.5 19.5C4.94772 19.5 4.5 19.0523 4.5 18.5V15.5C4.5 14.9477 4.94772 14.5 5.5 14.5ZM17.5 5.5C17.5 4.94772 17.9477 4.5 18.5 4.5C19.0523 4.5 19.5 4.94772 19.5 5.5V8.5C19.5 9.05228 19.0523 9.5 18.5 9.5C17.9477 9.5 17.5 9.05228 17.5 8.5V5.5ZM18.5 14.5C19.0523 14.5 19.5 14.9477 19.5 15.5V18.5C19.5 19.0523 19.0523 19.5 18.5 19.5C17.9477 19.5 17.5 19.0523 17.5 18.5V15.5C17.5 14.9477 17.9477 14.5 18.5 14.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/drive_train_24_regular.svg";Details
| Name | Drive Train |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_drive_train_24_regular.svg |
| Filled file | ic_fluent_drive_train_24_filled.svg |
| React components | DriveTrain24Regular, DriveTrain24Filled |
| License | MIT (© Microsoft Corporation) |