Channel Arrow Right icon

The Channel Arrow 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 Channel Arrow 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 { ChannelArrowRight24Regular, ChannelArrowRight24Filled } from "@fluentui/react-icons";

export function Example() {
  return <ChannelArrowRight24Regular aria-label="Channel Arrow Right" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_channel_arrow_right_24_regular.svg" width="24" height="24" alt="Channel Arrow 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="M17.5 12C20.5376 12 23 14.4624 23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12ZM4.5 17.75C4.5 18.6681 5.20715 19.4211 6.10645 19.4941L6.25 19.5H11.3145C11.4869 20.0338 11.7276 20.5365 12.0244 21H6.25C4.51706 20.9999 3.10055 19.6436 3.00488 17.9346L3 17.75V9.37207C3.23459 9.455 3.48701 9.49999 3.75 9.5C4.01295 9.5 4.26543 9.45497 4.5 9.37207V17.75ZM18.3535 14.6465C18.1583 14.4512 17.8417 14.4512 17.6465 14.6465C17.4512 14.8417 17.4512 15.1583 17.6465 15.3535L19.293 17H14.5C14.2239 17 14 17.2239 14 17.5C14 17.7761 14.2239 18 14.5 18H19.293L17.6465 19.6465C17.4512 19.8417 17.4512 20.1583 17.6465 20.3535C17.8417 20.5488 18.1583 20.5488 18.3535 20.3535L20.8535 17.8535C21.0488 17.6583 21.0488 17.3417 20.8535 17.1465L18.3535 14.6465ZM12.8086 13.0029C12.3825 13.4473 12.0194 13.9519 11.7324 14.5029H8.74805C8.33383 14.5029 7.99805 14.1671 7.99805 13.7529C7.99811 13.3733 8.28045 13.0594 8.64648 13.0098L8.74805 13.0029H12.8086ZM17.75 3C19.483 3 20.8994 4.35637 20.9951 6.06543L21 6.25V12.0244C20.5365 11.7276 20.0338 11.4869 19.5 11.3145V6.25C19.5 5.33183 18.7929 4.57887 17.8936 4.50586L17.75 4.5H6.25C5.64986 4.50003 5.11992 4.80225 4.80469 5.2627C4.49083 5.09518 4.13151 5 3.75 5C3.56881 5.00001 3.39243 5.02108 3.22363 5.06152C3.67695 3.90882 4.77001 3.07744 6.06543 3.00488L6.25 3H17.75ZM15.252 9.49609C15.6661 9.49609 16.0019 9.83194 16.002 10.2461C16.002 10.6257 15.7204 10.9394 15.3545 10.9893L15.252 10.9961H8.74805C8.33383 10.9961 7.99805 10.6603 7.99805 10.2461C7.99811 9.86646 8.28045 9.55259 8.64648 9.50293L8.74805 9.49609H15.252ZM3.75 6C4.44038 6 4.99995 6.55963 5 7.25C5 7.94041 4.44041 8.5 3.75 8.5C3.05963 8.49995 2.5 7.94038 2.5 7.25C2.50005 6.55967 3.05967 6.00005 3.75 6Z" 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/channel_arrow_right_24_regular.svg";

Details

NameChannel Arrow Right
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_channel_arrow_right_24_regular.svg
Filled fileic_fluent_channel_arrow_right_24_filled.svg
React componentsChannelArrowRight24Regular, ChannelArrowRight24Filled
LicenseMIT (© Microsoft Corporation)

Related icons