From 3260408d86fc4d1f966d9d9012fbf446c875b7ac Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia Date: Wed, 3 Dec 2025 14:26:11 +0530 Subject: [PATCH] chore: lock icon added to propel package --- packages/propel/src/icons/actions/index.ts | 1 + packages/propel/src/icons/actions/lock-icon.tsx | 13 +++++++++++++ packages/propel/src/icons/constants.tsx | 1 + packages/propel/src/icons/registry.ts | 2 ++ 4 files changed, 17 insertions(+) create mode 100644 packages/propel/src/icons/actions/lock-icon.tsx diff --git a/packages/propel/src/icons/actions/index.ts b/packages/propel/src/icons/actions/index.ts index 3030c2e76b..1ea4de1e89 100644 --- a/packages/propel/src/icons/actions/index.ts +++ b/packages/propel/src/icons/actions/index.ts @@ -5,6 +5,7 @@ export * from "./add-reaction-icon"; export * from "./check-icon"; export * from "./close-icon"; export * from "./edit-icon"; +export * from "./lock-icon"; export * from "./new-tab-icon"; export * from "./search-icon"; export * from "./plus-icon"; diff --git a/packages/propel/src/icons/actions/lock-icon.tsx b/packages/propel/src/icons/actions/lock-icon.tsx new file mode 100644 index 0000000000..17cafc88aa --- /dev/null +++ b/packages/propel/src/icons/actions/lock-icon.tsx @@ -0,0 +1,13 @@ +import * as React from "react"; + +import { IconWrapper } from "../icon-wrapper"; +import type { ISvgIcons } from "../type"; + +export const LockIcon: React.FC = ({ color = "currentColor", ...rest }) => ( + + + +); diff --git a/packages/propel/src/icons/constants.tsx b/packages/propel/src/icons/constants.tsx index d09652d426..058051faf7 100644 --- a/packages/propel/src/icons/constants.tsx +++ b/packages/propel/src/icons/constants.tsx @@ -6,6 +6,7 @@ export const ActionsIconsMap = [ { icon: , title: "CheckIcon" }, { icon: , title: "CloseIcon" }, { icon: , title: "EditIcon" }, + { icon: , title: "LockIcon" }, { icon: , title: "NewTabIcon" }, { icon: , title: "SearchIcon" }, { icon: , title: "PlusIcon" }, diff --git a/packages/propel/src/icons/registry.ts b/packages/propel/src/icons/registry.ts index 3dc88be004..a4c0f3176a 100644 --- a/packages/propel/src/icons/registry.ts +++ b/packages/propel/src/icons/registry.ts @@ -6,6 +6,7 @@ import { CheckIcon, CloseIcon, EditIcon, + LockIcon, NewTabIcon, PlusIcon, PreferencesIcon, @@ -133,6 +134,7 @@ export const ICON_REGISTRY = { "action.check": CheckIcon, "action.close": CloseIcon, "action.edit": EditIcon, + "action.lock": LockIcon, "action.new-tab": NewTabIcon, "action.search": SearchIcon, "action.plus": PlusIcon,