Gesture icon
Used in scenarios that need generic gesture representation. The Gesture 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 Gesture 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 { Gesture24Regular, Gesture24Filled } from "@fluentui/react-icons";
export function Example() {
return <Gesture24Regular aria-label="Gesture" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_gesture_24_regular.svg" width="24" height="24" alt="Gesture"> 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="M3.75 17.5C4.16421 17.5 4.5 17.8358 4.5 18.25C4.5 18.6642 4.16421 19 3.75 19C3.33579 19 3 18.6642 3 18.25C3 17.8358 3.33579 17.5 3.75 17.5ZM6.74862 4.00468H17.2535C17.6677 4.00468 18.0035 4.34047 18.0035 4.75468C18.0035 5.13438 17.7213 5.44817 17.3552 5.49783L17.2535 5.50468H10.7509L20.5242 9.30089C21.0949 9.52254 21.1635 10.2822 20.6848 10.6137L20.5886 10.6706L6.10062 17.9279C5.73027 18.1135 5.27965 17.9636 5.09414 17.5933C4.92408 17.2538 5.03582 16.8469 5.34088 16.6385L5.42881 16.5868L18.4048 10.0868L6.47706 5.45379C5.737 5.16634 5.90176 4.10295 6.64387 4.01103L6.74862 4.00468H17.2535H6.74862ZM19.75 4C20.1642 4 20.5 4.33579 20.5 4.75C20.5 5.16421 20.1642 5.5 19.75 5.5C19.3358 5.5 19 5.16421 19 4.75C19 4.33579 19.3358 4 19.75 4Z" 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/gesture_24_regular.svg";Details
| Name | Gesture |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_gesture_24_regular.svg |
| Filled file | ic_fluent_gesture_24_filled.svg |
| React components | Gesture24Regular, Gesture24Filled |
| License | MIT (© Microsoft Corporation) |