Flag Pride Philadelphia icon
In the LGBTQ+ community, we signify our pride with flags. With many different identities in the community, there comes many different flags to know.This pride flag is Philadelphia's adopted version in 2017, which includes black and brown to represent LGBT communities of color. The Flag Pride Philadelphia icon is part of Microsoft's Fluent UI System Icons, available here in the filled style 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.
Filled
Use the Flag Pride Philadelphia 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 { FlagPridePhiladelphia24Filled } from "@fluentui/react-icons";
export function Example() {
return <FlagPridePhiladelphia24Filled aria-label="Flag Pride Philadelphia" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_flag_pride_philadelphia_24_filled.svg" width="24" height="24" alt="Flag Pride Philadelphia"> 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"><rect x="4" y="4.25" width="16" height="2" fill="#745125"/>
<rect x="4" y="5.75" width="16" height="2" fill="#E62C46"/>
<rect x="4" y="7.25" width="16" height="2" fill="#F36D38"/>
<rect x="4" y="9" width="16" height="2" fill="#FFD23E"/>
<rect x="4" y="10.5" width="16" height="2" fill="#61BC51"/>
<rect x="4" y="12.25" width="16" height="2" fill="#1793E8"/>
<rect x="4" y="13.75" width="16" height="1.5" fill="#B73FBB"/>
<path d="M3.75 3C3.33579 3 3 3.33579 3 3.75V21.25C3 21.6642 3.33579 22 3.75 22C4.16421 22 4.5 21.6642 4.5 21.25L4.5 16.5H20.25C20.6642 16.5 21 16.1642 21 15.75V3.75C21 3.33579 20.6642 3 20.25 3H3.75ZM4.5 4.5H19.5V15H4.5V4.5Z" 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/flag_pride_philadelphia_24_filled.svg";Details
| Name | Flag Pride Philadelphia |
|---|---|
| Styles | Filled |
| Size | 24 × 24 px (scalable SVG) |
| Filled file | ic_fluent_flag_pride_philadelphia_24_filled.svg |
| React components | FlagPridePhiladelphia24Filled |
| License | MIT (© Microsoft Corporation) |