@thecb/components 11.7.1 → 11.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "11.7.1",
3
+ "version": "11.7.2",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
Binary file
@@ -16,7 +16,7 @@ import {
16
16
  import {
17
17
  MINESHAFT_GREY,
18
18
  ATHENS_GREY,
19
- FOREST_GREEN,
19
+ SEA_GREEN,
20
20
  RAZZMATAZZ_RED
21
21
  } from "../../../constants/colors";
22
22
 
@@ -31,8 +31,8 @@ const PasswordRequirements = ({ password, isMobile }) => {
31
31
  color: RAZZMATAZZ_RED
32
32
  },
33
33
  [INPUT_STATE_VALID]: {
34
- icon: <IconValid margin="0 0.5rem 0 0" />,
35
- color: FOREST_GREEN
34
+ icon: <IconValid margin="0 0.5rem 0 0" bgFill={SEA_GREEN} />,
35
+ color: SEA_GREEN
36
36
  }
37
37
  };
38
38