@thecb/components 7.13.3-beta.8 → 7.13.3-beta.9

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": "7.13.3-beta.8",
3
+ "version": "7.13.3-beta.9",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -2,7 +2,7 @@ import React from "react";
2
2
  import { fallbackValues } from "./Icons.theme";
3
3
  import { themeComponent } from "../../../util/themeUtils";
4
4
 
5
- const ChevronIcon = ({ themeValues, iconFill }) => {
5
+ const ChevronIconWhite = ({ themeValues, iconFill }) => {
6
6
  return (
7
7
  <svg
8
8
  width="24"
@@ -20,7 +20,7 @@ const ChevronIcon = ({ themeValues, iconFill }) => {
20
20
  </defs>
21
21
  <g
22
22
  id={`icon-chevron-Icon/Chevron-Down`}
23
- fill="currentColor"
23
+ fill="#ffffff"
24
24
  fillRule="evenodd"
25
25
  >
26
26
  <mask id={`icon-chevron-mask-2`}>
@@ -48,7 +48,7 @@ const ChevronIcon = ({ themeValues, iconFill }) => {
48
48
  };
49
49
 
50
50
  export default themeComponent(
51
- ChevronIcon,
51
+ ChevronIconWhite,
52
52
  "Icons",
53
53
  fallbackValues,
54
54
  "secondary"