Skip to content

Commit

Permalink
Add size to mods interfaces for the rest part of components
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekseyManetov committed Feb 7, 2025
1 parent 24af728 commit 9fada58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion epam-promo/components/widgets/CountIndicator.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createSkinComponent } from '@epam/uui-core';
import * as uui from '@epam/uui';

type CountIndicatorMods = {
type CountIndicatorMods = Pick<uui.CountIndicatorProps, 'size'> & {
/** Defines component color. */
color: 'gray' | 'white' | 'blue' | 'green' | 'amber' | 'red' | uui.CountIndicatorProps['color'];
};
Expand Down
2 changes: 1 addition & 1 deletion loveship/components/widgets/CountIndicator.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createSkinComponent } from '@epam/uui-core';
import * as uui from '@epam/uui';

type CountIndicatorMods = {
type CountIndicatorMods = Pick<uui.CountIndicatorProps, 'size'> & {
/** Defines component color. */
color: 'gray' | 'white' | 'sky' | 'grass' | 'sun' | 'fire' | uui.CountIndicatorProps['color'];
};
Expand Down

0 comments on commit 9fada58

Please sign in to comment.