oneslash-design-system 1.1.16 → 1.1.18
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/components/menuItem.tsx +1 -1
- package/components/tag.tsx +1 -1
- package/package.json +1 -1
package/components/menuItem.tsx
CHANGED
|
@@ -70,7 +70,7 @@ export default function MenuItem({
|
|
|
70
70
|
)}
|
|
71
71
|
|
|
72
72
|
{/* label */}
|
|
73
|
-
<span className="whitespace-nowrap text-body1 px-2 text-light-text-
|
|
73
|
+
<span className="whitespace-nowrap text-body1 px-2 text-light-text-primary dark:text-dark-text-primary">
|
|
74
74
|
{label}
|
|
75
75
|
</span>
|
|
76
76
|
</div>
|
package/components/tag.tsx
CHANGED
|
@@ -6,7 +6,7 @@ interface TagProps {
|
|
|
6
6
|
variant: 'contained' | 'textOnly';
|
|
7
7
|
size: 'medium' | 'small';
|
|
8
8
|
state?: 'enabled' | 'selected';
|
|
9
|
-
label:
|
|
9
|
+
label: React.ReactNode;
|
|
10
10
|
iconName?: keyof typeof HeroIcons;
|
|
11
11
|
onClick?: React.MouseEventHandler<HTMLDivElement>;
|
|
12
12
|
color?: 'default' | 'info';
|