Phone Footer Arrow Down icon
Used in scenarios around location of mobile UI. The Phone Footer Arrow Down 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 Phone Footer Arrow Down 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 { PhoneFooterArrowDown24Regular, PhoneFooterArrowDown24Filled } from "@fluentui/react-icons";
export function Example() {
return <PhoneFooterArrowDown24Regular aria-label="Phone Footer Arrow Down" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_phone_footer_arrow_down_24_regular.svg" width="24" height="24" alt="Phone Footer Arrow Down"> 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="M18 4.25C18 3.00736 16.9926 2 15.75 2H8.25C7.00736 2 6 3.00736 6 4.25V19.75C6 20.9926 7.00736 22 8.25 22H15.75C16.9926 22 18 20.9926 18 19.75V4.25ZM8.25 3.5H15.75C16.1642 3.5 16.5 3.83579 16.5 4.25V19.75C16.5 20.1642 16.1642 20.5 15.75 20.5H8.25C7.83579 20.5 7.5 20.1642 7.5 19.75V4.25C7.5 3.83579 7.83579 3.5 8.25 3.5ZM15.5 18.25C15.5 17.8358 15.1642 17.5 14.75 17.5H9.25C8.83579 17.5 8.5 17.8358 8.5 18.25C8.5 18.6642 8.83579 19 9.25 19H14.75C15.1642 19 15.5 18.6642 15.5 18.25ZM11.9933 16C12.1923 16.0019 12.3839 15.9248 12.5259 15.7855L15.0751 13.2855C15.3709 12.9955 15.3755 12.5206 15.0855 12.2249C14.7955 11.9291 14.3206 11.9245 14.0249 12.2145L12.75 13.4648V9.75C12.75 9.33579 12.4142 9 12 9C11.5858 9 11.25 9.33579 11.25 9.75V13.4124L10.0864 12.2251C9.79652 11.9292 9.32167 11.9244 9.02584 12.2143C8.73 12.5043 8.7252 12.9791 9.01512 13.2749L11.4651 15.7749C11.6044 15.917 11.7944 15.998 11.9933 16Z" 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/phone_footer_arrow_down_24_regular.svg";Details
| Name | Phone Footer Arrow Down |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_phone_footer_arrow_down_24_regular.svg |
| Filled file | ic_fluent_phone_footer_arrow_down_24_filled.svg |
| React components | PhoneFooterArrowDown24Regular, PhoneFooterArrowDown24Filled |
| License | MIT (© Microsoft Corporation) |