diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9283e3973..e1d5aaa6f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# CHANGELOG
+## v2.0.84
+
+- Improve `Overlay` flexibility
+- Add `Filter` icon
+
## v2.0.83
- Fix attribute handling for conditionally clickable components
diff --git a/package-lock.json b/package-lock.json
index 7f96058c9..ee203ab08 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@lob/ui-components",
- "version": "2.0.83",
+ "version": "2.0.84",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@lob/ui-components",
- "version": "2.0.83",
+ "version": "2.0.84",
"dependencies": {
"date-fns": "^2.29.3",
"date-fns-holiday-us": "^0.3.1",
diff --git a/package.json b/package.json
index 6629c2b89..8ae329359 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@lob/ui-components",
- "version": "2.0.83",
+ "version": "2.0.84",
"engines": {
"node": ">=20.2.0",
"npm": ">=10.2.0"
diff --git a/src/components/Icon/svgs/Filter.svg b/src/components/Icon/svgs/Filter.svg
new file mode 100644
index 000000000..2fdfb1079
--- /dev/null
+++ b/src/components/Icon/svgs/Filter.svg
@@ -0,0 +1,3 @@
+
diff --git a/src/components/Icon/types.ts b/src/components/Icon/types.ts
index ac885a0db..dc103cc5e 100644
--- a/src/components/Icon/types.ts
+++ b/src/components/Icon/types.ts
@@ -62,6 +62,7 @@ export const IconName = {
FILE_ALT: 'FileAlt',
FILE_INFO: 'FileInfo',
FILE_SHARE: 'FileShare',
+ FILTER: 'Filter',
FIRE: 'Fire',
FOLDER_INFO: 'FolderInfo',
FUTURE: 'Future',
diff --git a/src/components/Overlay/Overlay.mdx b/src/components/Overlay/Overlay.mdx
index d191892b2..f0ffb28c7 100644
--- a/src/components/Overlay/Overlay.mdx
+++ b/src/components/Overlay/Overlay.mdx
@@ -27,7 +27,7 @@ import { Primary } from './Overlay.stories';
-
+