Edit Lock icon

Represents locking content, to prevent any edits. The Edit 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.

Regular (outlined)

SVG

Filled

SVG

Use the Edit 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 { EditLock24Regular, EditLock24Filled } from "@fluentui/react-icons";

export function Example() {
  return <EditLock24Regular aria-label="Edit Lock" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_edit_lock_24_regular.svg" width="24" height="24" alt="Edit 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="M15.8911 3.04825C17.2885 1.65064 19.5543 1.65058 20.9519 3.0481C22.3493 4.4455 22.3493 6.71112 20.952 8.10861L19.1489 9.91196C18.6576 9.64906 18.0962 9.5 17.5 9.5C17.4796 9.5 17.4593 9.50017 17.4391 9.50052L17.9394 9.00018L15 6.06084L5.00175 16.0603C4.79168 16.2704 4.64402 16.5346 4.57521 16.8237L3.76191 20.2395L7.17755 19.4263C7.46668 19.3574 7.73104 19.2097 7.94119 18.9995L12.0836 14.8567C12.029 15.0619 12 15.2776 12 15.5V17.0617L9.00191 20.0601C8.59546 20.4666 8.08418 20.7523 7.52498 20.8855L2.92373 21.981C2.67037 22.0413 2.40385 21.9659 2.21968 21.7817C2.03552 21.5976 1.96009 21.3311 2.02041 21.0777L3.116 16.4762C3.2491 15.9172 3.5347 15.4061 3.94103 14.9997L15.8911 3.04825ZM19.8912 4.10876C19.0795 3.29705 17.7634 3.29709 16.9518 4.10884L16.0606 5.00012L19 7.93946L19.8913 7.04801C20.7029 6.23632 20.7028 4.9204 19.8912 4.10876ZM15 14V13C15 11.6193 16.1193 10.5 17.5 10.5C18.8807 10.5 20 11.6193 20 13V14H20.5C21.3284 14 22 14.6716 22 15.5V20.5C22 21.3284 21.3284 22 20.5 22H14.5C13.6716 22 13 21.3284 13 20.5V15.5C13 14.6716 13.6716 14 14.5 14H15ZM16.5 13V14H18.5V13C18.5 12.4477 18.0523 12 17.5 12C16.9477 12 16.5 12.4477 16.5 13ZM18.5 18C18.5 17.4477 18.0523 17 17.5 17C16.9477 17 16.5 17.4477 16.5 18C16.5 18.5523 16.9477 19 17.5 19C18.0523 19 18.5 18.5523 18.5 18Z" 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/edit_lock_24_regular.svg";

Details

NameEdit Lock
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_edit_lock_24_regular.svg
Filled fileic_fluent_edit_lock_24_filled.svg
React componentsEditLock24Regular, EditLock24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

pencilupdateview-only

Related icons