Scan Type Off icon
Used to represent scanning scenarios with different content. The Scan Type Off 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 Scan Type Off 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 { ScanTypeOff24Regular, ScanTypeOff24Filled } from "@fluentui/react-icons";
export function Example() {
return <ScanTypeOff24Regular aria-label="Scan Type Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_scan_type_off_24_regular.svg" width="24" height="24" alt="Scan Type Off"> 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="M2.48327 3.54394C2.17684 4.03982 2 4.62426 2 5.25V8.25C2 8.66421 2.33579 9 2.75 9C3.16421 9 3.5 8.66421 3.5 8.25V5.25C3.5 5.0437 3.5357 4.84573 3.60126 4.66194L7 8.06076V9C7 9.41421 7.33579 9.75 7.75 9.75C8.00544 9.75 8.23105 9.6223 8.36648 9.42726L11.25 12.3108V15.5H9.75C9.33579 15.5 9 15.8358 9 16.25C9 16.6642 9.33579 17 9.75 17H14.25C14.6642 17 15 16.6642 15 16.25C15 16.1725 14.9882 16.0977 14.9664 16.0273L19.3378 20.3988C19.1541 20.4643 18.9562 20.5 18.75 20.5H15.75C15.3358 20.5 15 20.8358 15 21.25C15 21.6642 15.3358 22 15.75 22H18.75C19.3756 22 19.96 21.8232 20.4558 21.5169L20.7194 21.7805C21.0123 22.0734 21.4872 22.0734 21.7801 21.7805C22.073 21.4876 22.073 21.0127 21.7801 20.7198L3.28034 2.21968C2.98745 1.92678 2.51257 1.92677 2.21968 2.21966C1.92678 2.51255 1.92677 2.98743 2.21966 3.28032L2.48327 3.54394ZM14.4727 15.5336C14.4024 15.5118 14.3275 15.5 14.25 15.5H12.75V13.8109L14.4727 15.5336ZM10.1819 7L12.75 9.56816V8.5H15.5V9C15.5 9.41421 15.8358 9.75 16.25 9.75C16.6642 9.75 17 9.41421 17 9V7.75C17 7.33579 16.6642 7 16.25 7H10.1819ZM20.5 17.3183L21.9993 18.8177C21.9998 18.7952 22 18.7726 22 18.75V15.75C22 15.3358 21.6642 15 21.25 15C20.8358 15 20.5 15.3358 20.5 15.75V17.3183ZM5.18267 2.00068L6.68196 3.5H8.25C8.66421 3.5 9 3.16421 9 2.75C9 2.33579 8.66421 2 8.25 2H5.25C5.2275 2 5.20506 2.00023 5.18267 2.00068ZM5.25 20.5C4.2835 20.5 3.5 19.7165 3.5 18.75V15.75C3.5 15.3358 3.16421 15 2.75 15C2.33579 15 2 15.3358 2 15.75V18.75C2 20.5449 3.45507 22 5.25 22H8.25C8.66421 22 9 21.6642 9 21.25C9 20.8358 8.66421 20.5 8.25 20.5H5.25ZM20.5 5.25C20.5 4.2835 19.7165 3.5 18.75 3.5H15.75C15.3358 3.5 15 3.16421 15 2.75C15 2.33579 15.3358 2 15.75 2H18.75C20.5449 2 22 3.45507 22 5.25V8.25C22 8.66421 21.6642 9 21.25 9C20.8358 9 20.5 8.66421 20.5 8.25V5.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/scan_type_off_24_regular.svg";Details
| Name | Scan Type Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_scan_type_off_24_regular.svg |
| Filled file | ic_fluent_scan_type_off_24_filled.svg |
| React components | ScanTypeOff24Regular, ScanTypeOff24Filled |
| License | MIT (© Microsoft Corporation) |