Poll Off icon
Used to represent poll voting scenarios. The Poll 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 Poll 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 { PollOff24Regular, PollOff24Filled } from "@fluentui/react-icons";
export function Example() {
return <PollOff24Regular aria-label="Poll Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_poll_off_24_regular.svg" width="24" height="24" alt="Poll 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="M9 10.0608L2.21966 3.28032C1.92677 2.98743 1.92678 2.51255 2.21968 2.21966C2.51257 1.92677 2.98745 1.92678 3.28034 2.21968L21.7801 20.7198C22.073 21.0127 22.073 21.4876 21.7801 21.7805C21.4872 22.0734 21.0123 22.0734 20.7194 21.7805L20.3959 21.4569C19.9372 21.7992 19.3682 22.0018 18.7519 22.0018C17.2321 22.0018 16 20.7697 16 19.2499V17.0609L14.5037 15.5646V19.2499C14.5037 20.7697 13.2717 22.0018 11.7519 22.0018C10.2321 22.0018 9 20.7697 9 19.2499V10.0608ZM13.0037 14.0646L10.5 11.5608V19.2499C10.5 19.9413 11.0605 20.5018 11.7519 20.5018C12.4433 20.5018 13.0037 19.9413 13.0037 19.2499V14.0646ZM17.5 18.561V19.2499C17.5 19.9413 18.0605 20.5018 18.7519 20.5018C18.9524 20.5018 19.1419 20.4547 19.3099 20.3709L17.5 18.561ZM13.0037 4.75138V9.82191L14.5037 11.3219V4.75138C14.5037 3.23157 13.2717 1.99951 11.7519 1.99951C10.2321 1.99951 9 3.23157 9 4.75138V5.81809L10.5 7.31812V4.75138C10.5 4.05999 11.0605 3.49951 11.7519 3.49951C12.4433 3.49951 13.0037 4.05999 13.0037 4.75138ZM16 12.8182L17.5 14.3183V9.75138C17.5 9.05999 18.0605 8.49951 18.7519 8.49951C19.4433 8.49951 20.0037 9.05999 20.0037 9.75138V16.8221L21.5037 18.3221V9.75138C21.5037 8.23157 20.2717 6.99951 18.7519 6.99951C17.2321 6.99951 16 8.23157 16 9.75138V12.8182ZM4.75187 11.9995C6.27169 11.9995 7.50374 13.2316 7.50374 14.7514V19.2499C7.50374 20.7697 6.27169 22.0018 4.75187 22.0018C3.23205 22.0018 2 20.7697 2 19.2499V14.7514C2 13.2316 3.23205 11.9995 4.75187 11.9995ZM4.75187 13.4995C4.06048 13.4995 3.5 14.06 3.5 14.7514V19.2499C3.5 19.9413 4.06048 20.5018 4.75187 20.5018C5.44326 20.5018 6.00374 19.9413 6.00374 19.2499V14.7514C6.00374 14.06 5.44326 13.4995 4.75187 13.4995Z" 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/poll_off_24_regular.svg";Details
| Name | Poll Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_poll_off_24_regular.svg |
| Filled file | ic_fluent_poll_off_24_filled.svg |
| React components | PollOff24Regular, PollOff24Filled |
| License | MIT (© Microsoft Corporation) |