Kiosk icon
Used to represent a large screen device. The Kiosk 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 Kiosk 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 { Kiosk24Regular, Kiosk24Filled } from "@fluentui/react-icons";
export function Example() {
return <Kiosk24Regular aria-label="Kiosk" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_kiosk_24_regular.svg" width="24" height="24" alt="Kiosk"> 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="M4 4.25C4 3.00736 5.00736 2 6.25 2H17.75C18.9926 2 20 3.00736 20 4.25V10.75C20 11.9926 18.9926 13 17.75 13H14.5V20.5H16.25C16.6642 20.5 17 20.8358 17 21.25C17 21.6642 16.6642 22 16.25 22H7.75C7.33579 22 7 21.6642 7 21.25C7 20.8358 7.33579 20.5 7.75 20.5H9.5V13H6.25C5.00736 13 4 11.9926 4 10.75V4.25ZM11 13V20.5H13V13H11ZM6.25 3.5C5.83579 3.5 5.5 3.83579 5.5 4.25V10.75C5.5 11.1642 5.83579 11.5 6.25 11.5H17.75C18.1642 11.5 18.5 11.1642 18.5 10.75V4.25C18.5 3.83579 18.1642 3.5 17.75 3.5H6.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/kiosk_24_regular.svg";Details
| Name | Kiosk |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_kiosk_24_regular.svg |
| Filled file | ic_fluent_kiosk_24_filled.svg |
| React components | Kiosk24Regular, Kiosk24Filled |
| License | MIT (© Microsoft Corporation) |