diff --git a/src/components/icon/Icons.tsx b/src/components/icon/Icons.tsx index 73f6d11..dfef94f 100644 --- a/src/components/icon/Icons.tsx +++ b/src/components/icon/Icons.tsx @@ -53,6 +53,8 @@ export type IconName = | "EyeBlind" | "Warning" | "Funnel" + | "Bookmark" + | "Inbox" | "Hash" | "HashLock" | "HashGlobe" @@ -112,7 +114,8 @@ export type IconName = | "ArrowDropRight" | "ArrowDropLeft" | "ArrowDropTop" - | "ArrowDropBottom"; + | "ArrowDropBottom" + | "Reload"; export const Icons: Record = { Home: (filled) => @@ -1318,6 +1321,33 @@ export const Icons: Record = { fill="currentColor" /> ), + Bookmark: (filled) => + filled ? ( + + ) : ( + + ), + Inbox: (filled) => + filled ? ( + + ) : ( + + ), Hash: () => ( = { fill="currentColor" /> ), + Reload: () => ( + <> + + + + ), };