diff --git a/CHANGELOG.md b/CHANGELOG.md index 25bdc1d81..498c44220 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## v2.0.57 + +- Add new icons for the `Icon` component + - `NavArrowLeft` + ## v2.0.56 - Add new icons for the `Icon` component diff --git a/package-lock.json b/package-lock.json index 50cae186e..933740077 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@lob/ui-components", - "version": "2.0.56", + "version": "2.0.57", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@lob/ui-components", - "version": "2.0.56", + "version": "2.0.57", "dependencies": { "date-fns": "^2.29.3", "date-fns-holiday-us": "^0.3.1", diff --git a/package.json b/package.json index 45ca295d8..372ed64e1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lob/ui-components", - "version": "2.0.56", + "version": "2.0.57", "engines": { "node": ">=20.2.0", "npm": ">=10.2.0" diff --git a/src/components/Icon/svgs/NavArrowLeft.svg b/src/components/Icon/svgs/NavArrowLeft.svg new file mode 100644 index 000000000..909b18c45 --- /dev/null +++ b/src/components/Icon/svgs/NavArrowLeft.svg @@ -0,0 +1,6 @@ + + + diff --git a/src/components/Icon/types.ts b/src/components/Icon/types.ts index ce9924796..081e51f87 100644 --- a/src/components/Icon/types.ts +++ b/src/components/Icon/types.ts @@ -61,6 +61,7 @@ export const IconName = { LIGHTNING: 'Lightning', LOCATION_PIN: 'LocationPin', MONEY_BILL: 'MoneyBill', + NAV_ARROW_LEFT: 'NavArrowLeft', NEXT: 'Next', OPEN_BOOK: 'OpenBook', PAINT_ROLLER: 'PaintRoller',