@@ -19,7 +19,7 @@ import { ProgressingProps } from '@Common/Types'
19
19
import { ButtonProps } from './types'
20
20
21
21
export const BUTTON_SIZE_TO_CLASS_NAME_MAP : Record < ButtonProps [ 'size' ] , string > = {
22
- [ ComponentSizeType . xxxs ] : `${ COMPONENT_SIZE_TYPE_TO_FONT_AND_BLOCK_PADDING_MAP [ ComponentSizeType . xxs ] } px-9 fw-6 dc__gap-6 mw-48` ,
22
+ [ ComponentSizeType . xxs_small_icon ] : `${ COMPONENT_SIZE_TYPE_TO_FONT_AND_BLOCK_PADDING_MAP [ ComponentSizeType . xxs ] } px-9 fw-6 dc__gap-6 mw-48` ,
23
23
[ ComponentSizeType . xxs ] : `${ COMPONENT_SIZE_TYPE_TO_FONT_AND_BLOCK_PADDING_MAP [ ComponentSizeType . xxs ] } px-9 fw-6 dc__gap-6 mw-48` ,
24
24
[ ComponentSizeType . xs ] : `${ COMPONENT_SIZE_TYPE_TO_FONT_AND_BLOCK_PADDING_MAP [ ComponentSizeType . xs ] } px-9 fw-6 dc__gap-6 mw-48` ,
25
25
[ ComponentSizeType . small ] : `${ COMPONENT_SIZE_TYPE_TO_FONT_AND_BLOCK_PADDING_MAP [ ComponentSizeType . small ] } px-9 fw-6 dc__gap-8 mw-48` ,
@@ -29,7 +29,7 @@ export const BUTTON_SIZE_TO_CLASS_NAME_MAP: Record<ButtonProps['size'], string>
29
29
} as const
30
30
31
31
export const ICON_BUTTON_SIZE_TO_CLASS_NAME_MAP : Record < ButtonProps [ 'size' ] , string > = {
32
- [ ComponentSizeType . xxxs ] : `p-3` ,
32
+ [ ComponentSizeType . xxs_small_icon ] : 'p-4' ,
33
33
[ ComponentSizeType . xxs ] : 'p-1' ,
34
34
[ ComponentSizeType . xs ] : 'p-3' ,
35
35
[ ComponentSizeType . small ] : 'p-5' ,
@@ -39,7 +39,7 @@ export const ICON_BUTTON_SIZE_TO_CLASS_NAME_MAP: Record<ButtonProps['size'], str
39
39
} as const
40
40
41
41
export const BUTTON_SIZE_TO_ICON_SIZE_MAP : Record < ButtonProps [ 'size' ] , ProgressingProps [ 'size' ] > = {
42
- [ ComponentSizeType . xxxs ] : 12 ,
42
+ [ ComponentSizeType . xxs_small_icon ] : 12 ,
43
43
[ ComponentSizeType . xxs ] : 14 ,
44
44
[ ComponentSizeType . xs ] : 14 ,
45
45
[ ComponentSizeType . small ] : 16 ,
@@ -49,7 +49,7 @@ export const BUTTON_SIZE_TO_ICON_SIZE_MAP: Record<ButtonProps['size'], Progressi
49
49
} as const
50
50
51
51
export const ICON_BUTTON_SIZE_TO_ICON_SIZE_MAP : Record < ButtonProps [ 'size' ] , ProgressingProps [ 'size' ] > = {
52
- [ ComponentSizeType . xxxs ] : 12 ,
52
+ [ ComponentSizeType . xxs_small_icon ] : 12 ,
53
53
[ ComponentSizeType . xxs ] : 16 ,
54
54
[ ComponentSizeType . xs ] : 16 ,
55
55
[ ComponentSizeType . small ] : 16 ,
0 commit comments