Prohibited Smoking icon
Used to represent unauthorized smoking areas or restrictions. The Prohibited Smoking icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 2 sizes from 16 to 20 px. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_prohibited_smoking_16_regular.svg
Prohibited Smoking icon in React
npm install @fluentui/react-icons
import { ProhibitedSmoking16Regular } from "@fluentui/react-icons";
export function Example() {
return <ProhibitedSmoking16Regular aria-label="Prohibited Smoking" />;
}Use the Prohibited Smoking 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 { ProhibitedSmoking16Regular, ProhibitedSmoking16Filled } from "@fluentui/react-icons";
export function Example() {
return <ProhibitedSmoking16Regular aria-label="Prohibited Smoking" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_prohibited_smoking_20_regular.svg" width="20" height="20" alt="Prohibited Smoking"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M10 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16m.7 8h3.8c.28 0 .5.22.5.5v1a.5.5 0 0 1-.5.5H8.7l-3.28 3.3a7 7 0 0 0 9.87-9.87zM10 3a7 7 0 0 0-5.3 11.58L7.3 12H7v-2h2.3l5.28-5.3A7 7 0 0 0 10 3m-4 9h-.5a.5.5 0 0 1-.5-.5v-1c0-.28.22-.5.5-.5H6zm0-6.36c0-.16.21-.21.28-.07l.4.79a1 1 0 0 1-.19 1.15l-.2.2a1 1 0 0 0-.29.7v1.03c0 .26-.36.35-.47.11l-.41-.81c-.35-.71-.13-1.57.53-2A.8.8 0 0 0 6 6.07z"/></svg>Details
| Name | Prohibited Smoking |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px, 20 px |
| Regular (outlined) file | ic_fluent_prohibited_smoking_20_regular.svg |
| Filled file | ic_fluent_prohibited_smoking_20_filled.svg |
| React (Regular) | ProhibitedSmoking16Regular, ProhibitedSmoking20Regular |
| React (Filled) | ProhibitedSmoking16Filled, ProhibitedSmoking20Filled |
| License | MIT (© Microsoft Corporation) |