Select All Off icon
Used for toggle selection states. Contains state variants. The Select All 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 Select All 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 { SelectAllOff24Regular, SelectAllOff24Filled } from "@fluentui/react-icons";
export function Example() {
return <SelectAllOff24Regular aria-label="Select All Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_select_all_off_24_regular.svg" width="24" height="24" alt="Select All 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="M6.25 3C4.45507 3 3 4.45507 3 6.25V15.25C3 17.0449 4.45507 18.5 6.25 18.5H15.25C17.0449 18.5 18.5 17.0449 18.5 15.25V6.25C18.5 4.45507 17.0449 3 15.25 3H6.25ZM4.5 6.25C4.5 5.2835 5.2835 4.5 6.25 4.5H15.25C16.2165 4.5 17 5.2835 17 6.25V15.25C17 16.2165 16.2165 17 15.25 17H6.25C5.2835 17 4.5 16.2165 4.5 15.25V6.25ZM6.01074 19.5C6.58826 20.4022 7.59927 21.0002 8.74995 21.0002H15.7499C18.6494 21.0002 21 18.6497 21 15.7502V8.75017C21 7.59956 20.402 6.58861 19.5 6.01108V15.7502C19.5 17.8212 17.821 19.5002 15.7499 19.5002H8.74995L8.72444 19.5H6.01074Z" 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/select_all_off_24_regular.svg";Details
| Name | Select All Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_select_all_off_24_regular.svg |
| Filled file | ic_fluent_select_all_off_24_filled.svg |
| React components | SelectAllOff24Regular, SelectAllOff24Filled |
| License | MIT (© Microsoft Corporation) |