Trophy Lock icon
Used to represent an un-lockable rewards, top award, or celebration events. The Trophy Lock 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 Trophy Lock 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 { TrophyLock24Regular, TrophyLock24Filled } from "@fluentui/react-icons";
export function Example() {
return <TrophyLock24Regular aria-label="Trophy Lock" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_trophy_lock_24_regular.svg" width="24" height="24" alt="Trophy Lock"> 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.4899 4.00044C17.3657 2.87524 16.4119 2 15.2536 2H8.25056C7.09227 2 6.13841 2.87524 6.01424 4.00044L4.74609 4C3.7796 4 2.99609 4.7835 2.99609 5.75V8.75C2.99609 10.5449 4.45117 12 6.24609 12L6.27235 12.0007C6.93987 14.09 8.76915 15.6601 11.0004 15.9513L11.0001 17.5H9.25056L9.06614 17.5051C7.35702 17.6008 6.00056 19.017 6.00056 20.75V21.25L6.00741 21.3518C6.05707 21.7178 6.37086 22 6.75056 22H13.4998C13.186 21.5822 13 21.0628 13 20.5H7.51828L7.54591 20.3525C7.72592 19.5775 8.4208 19 9.25056 19H13V17.5H12.5001L12.5007 15.9517C12.6695 15.9298 12.8361 15.9005 13 15.8642V15.5C13 15.0147 13.1383 14.5616 13.3776 14.1782C12.8769 14.3856 12.3278 14.5 11.7521 14.5C9.40403 14.5 7.50056 12.5965 7.50056 10.2485V4.25C7.50056 3.83579 7.83635 3.5 8.25056 3.5H15.2536C15.6678 3.5 16.0036 3.83579 16.0036 4.25V10.2485C16.0036 10.3526 15.9998 10.4559 15.9925 10.5582C16.4044 10.1353 16.9224 9.81615 17.5036 9.64388V5.5H18.7576L18.815 5.5066C18.9254 5.53251 19.0076 5.63165 19.0076 5.75V8.75L19.0009 8.90415C18.982 9.1218 18.9231 9.32804 18.8318 9.51552C19.3518 9.56442 19.8388 9.7271 20.2675 9.97842C20.4223 9.59943 20.5076 9.18468 20.5076 8.75V5.75L20.5018 5.60647C20.4288 4.70711 19.6758 4 18.7576 4L17.4899 4.00044ZM4.74609 5.5H6.00056V10.4829C5.15031 10.3635 4.49609 9.63316 4.49609 8.75V5.75C4.49609 5.61193 4.60802 5.5 4.74609 5.5ZM18.5 10.5C17.1193 10.5 16 11.6193 16 13V14H15.5C14.6716 14 14 14.6716 14 15.5V20.5C14 21.3284 14.6716 22 15.5 22H21.5C22.3284 22 23 21.3284 23 20.5V15.5C23 14.6716 22.3284 14 21.5 14H21V13C21 11.6193 19.8807 10.5 18.5 10.5ZM18.5 12C19.0523 12 19.5 12.4477 19.5 13V14H17.5V13C17.5 12.4477 17.9477 12 18.5 12ZM18.5 19C17.9477 19 17.5 18.5523 17.5 18C17.5 17.4477 17.9477 17 18.5 17C19.0523 17 19.5 17.4477 19.5 18C19.5 18.5523 19.0523 19 18.5 19Z" 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/trophy_lock_24_regular.svg";Details
| Name | Trophy Lock |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_trophy_lock_24_regular.svg |
| Filled file | ic_fluent_trophy_lock_24_filled.svg |
| React components | TrophyLock24Regular, TrophyLock24Filled |
| License | MIT (© Microsoft Corporation) |