Swipe Right icon

Used in swipe gesture scenarios. Contains direction variant. The Swipe Right 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.

Regular (outlined)

SVG

Filled

SVG

Use the Swipe Right 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 { SwipeRight24Regular, SwipeRight24Filled } from "@fluentui/react-icons";

export function Example() {
  return <SwipeRight24Regular aria-label="Swipe Right" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_swipe_right_24_regular.svg" width="24" height="24" alt="Swipe Right">

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="M5.99664 12C5.99664 12.3797 6.27855 12.6935 6.64432 12.7432L6.74601 12.75H19.4403L17.2237 14.9697C16.9576 15.2359 16.9335 15.6526 17.1511 15.9462L17.2237 16.0303C17.4897 16.2966 17.906 16.3208 18.1994 16.1029L18.2835 16.0303L21.7805 12.5303C22.0466 12.2641 22.0707 11.8474 21.8531 11.5538L21.7805 11.4697L18.2835 7.96967C17.9908 7.67678 17.5163 7.67678 17.2237 7.96967C16.9576 8.23594 16.9335 8.6526 17.1511 8.94621L17.2237 9.03033L19.4403 11.25H6.74601C6.33214 11.25 5.99664 11.5858 5.99664 12ZM2 12C2 14.7614 4.23669 17 6.99579 17C9.13942 17 10.9677 15.6488 11.6767 13.7509L10.0246 13.7507C9.41982 14.7965 8.28989 15.5 6.99579 15.5C5.06442 15.5 3.49874 13.933 3.49874 12C3.49874 10.067 5.06442 8.5 6.99579 8.5C8.2903 8.5 9.42053 9.20396 10.0252 10.2502L11.6771 10.2501C10.9684 8.35172 9.1398 7 6.99579 7C4.23669 7 2 9.23858 2 12Z" 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/swipe_right_24_regular.svg";

Details

NameSwipe Right
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_swipe_right_24_regular.svg
Filled fileic_fluent_swipe_right_24_filled.svg
React componentsSwipeRight24Regular, SwipeRight24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

gesturetouchscreenmobiletabletdirection

Related icons