Share iOS icon
Used in sharing information scenarios, specifically for iOS. The Share iOS 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 Share iOS 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 { ShareIos24Regular, ShareIos24Filled } from "@fluentui/react-icons";
export function Example() {
return <ShareIos24Regular aria-label="Share iOS" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_share_ios_24_regular.svg" width="24" height="24" alt="Share iOS"> 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="M12.5303 2.21967C12.2374 1.92678 11.7626 1.92678 11.4697 2.21967L6.21967 7.46967C5.92678 7.76256 5.92678 8.23744 6.21967 8.53033C6.51256 8.82322 6.98744 8.82322 7.28033 8.53033L11.25 4.56066V15.25C11.25 15.6642 11.5858 16 12 16C12.4142 16 12.75 15.6642 12.75 15.25V4.56066L16.7197 8.53033C17.0126 8.82322 17.4874 8.82322 17.7803 8.53033C18.0732 8.23744 18.0732 7.76256 17.7803 7.46967L12.5303 2.21967ZM3.75 11C4.16421 11 4.5 11.3358 4.5 11.75V17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V11.75C19.5 11.3358 19.8358 11 20.25 11C20.6642 11 21 11.3358 21 11.75V17.75C21 19.5449 19.5449 21 17.75 21H6.25C4.45507 21 3 19.5449 3 17.75V11.75C3 11.3358 3.33579 11 3.75 11Z" 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/share_ios_24_regular.svg";Details
| Name | Share iOS |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_share_ios_24_regular.svg |
| Filled file | ic_fluent_share_ios_24_filled.svg |
| React components | ShareIos24Regular, ShareIos24Filled |
| License | MIT (© Microsoft Corporation) |