From 6b5746b7fe19a42b479c9c2f288a3d279c11274f Mon Sep 17 00:00:00 2001 From: Ken Crimmins <37313064+kencrim@users.noreply.github.com> Date: Fri, 10 May 2024 13:02:03 -0700 Subject: [PATCH] SELF-294/left arrow icon (#498) * feat: add new icons for the `Icon` component * 2.0.57 --- CHANGELOG.md | 5 +++++ package-lock.json | 4 ++-- package.json | 2 +- src/components/Icon/svgs/NavArrowLeft.svg | 6 ++++++ src/components/Icon/types.ts | 1 + 5 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 src/components/Icon/svgs/NavArrowLeft.svg 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',