Skip to content

Commit 6bf4cbb

Browse files
authored
fix: filterChip props에서 순환 참조가 발생하는 문제를 해결한다 (#1037)
* fix: filterChip props에서 순환 참조가 발생하는 문제를 해결한 * test: 테스트 코드 업데이트
1 parent 21bce35 commit 6bf4cbb

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/vibrant-components/src/lib/FilterChip/FilterChipProps.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ export const withFilterChipVariation = withVariation<FilterChipProps>('FilterChi
4848
bodyLevel: 2,
4949
iconSize: 16,
5050
minHeight: 38,
51-
p: 10,
51+
px: 10,
52+
py: 10,
5253
spacing: 4,
5354
rounded: 'xl',
5455
} as const;

packages/vibrant-components/src/lib/FilterChip/__snapshots__/FilterChip.spec.tsx.snap

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ exports[`<FilterChip /> when href provided match snapshot 1`] = `
3333
-ms-flex-item-align: flex-start;
3434
align-self: flex-start;
3535
min-height: 38px;
36-
padding: 10px;
36+
padding-left: 10px;
37+
padding-right: 10px;
38+
padding-top: 10px;
39+
padding-bottom: 10px;
3740
border-radius: 16px;
3841
background-color: #00000008;
3942
}

0 commit comments

Comments
 (0)