Password Reset icon
Used to represent general password scenarios. The Password Reset icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 48 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 48 px
ic_fluent_password_reset_48_regular.svg
Password Reset icon in React
npm install @fluentui/react-icons
import { PasswordReset48Regular } from "@fluentui/react-icons";
export function Example() {
return <PasswordReset48Regular aria-label="Password Reset" />;
}Use the Password Reset 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 { PasswordReset48Regular, PasswordReset48Filled } from "@fluentui/react-icons";
export function Example() {
return <PasswordReset48Regular aria-label="Password Reset" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_password_reset_48_regular.svg" width="48" height="48" alt="Password Reset"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M4 13.25C4 9.8 6.8 7 10.25 7h27.5C41.2 7 44 9.8 44 13.25v15.26a11 11 0 0 0-2.5-1.55V13.25a3.75 3.75 0 0 0-3.75-3.75h-27.5a3.75 3.75 0 0 0-3.75 3.75v15.5a3.75 3.75 0 0 0 3.75 3.75H23.9l2.5 2.5H10.25A6.25 6.25 0 0 1 4 28.75zM33.25 25q-.46 0-.8-.28-.09-.62-.43-1.18c.1-.59.61-1.04 1.23-1.04h4.5a1.25 1.25 0 1 1 0 2.5zm-6.48-4L28 22.24q-.57.24-1.06.71l-.88.89L25 22.77l-1.87 1.86a1.25 1.25 0 0 1-1.76-1.76L23.23 21l-1.86-1.87a1.25 1.25 0 0 1 1.76-1.76L25 19.23l1.87-1.86a1.25 1.25 0 0 1 1.76 1.76zm-16.4-3.63a1.25 1.25 0 0 1 1.76 0L14 19.23l1.87-1.86a1.25 1.25 0 0 1 1.76 1.76L15.77 21l1.86 1.87a1.25 1.25 0 0 1-1.76 1.76L14 22.77l-1.87 1.86a1.25 1.25 0 0 1-1.76-1.76L12.23 21l-1.86-1.87a1.25 1.25 0 0 1 0-1.76m19.76 8.76a1.25 1.25 0 0 0-1.76-1.76l-4 4a1.25 1.25 0 0 0 0 1.76l4 4a1.25 1.25 0 0 0 1.76-1.76l-1.86-1.87H37a6.5 6.5 0 1 1-6.42 7.55 1.25 1.25 0 1 0-2.46.4A9 9 0 1 0 37 28h-8.73z"/></svg>Details
| Name | Password Reset |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 48 px |
| Regular (outlined) file | ic_fluent_password_reset_48_regular.svg |
| Filled file | ic_fluent_password_reset_48_filled.svg |
| React (Regular) | PasswordReset48Regular |
| React (Filled) | PasswordReset48Filled |
| License | MIT (© Microsoft Corporation) |