File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed
Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -87,8 +87,10 @@ export const defaultTheme: DefaultTheme = {
8787 components : {
8888 IonChip : {
8989 margin : '4px' ,
90- paddingVertical : '6px' ,
91- paddingHorizontal : '12px' ,
90+ padding : {
91+ vertical : '6px' ,
92+ horizontal : '12px' ,
93+ } ,
9294
9395 // Sizes
9496 size : {
Original file line number Diff line number Diff line change @@ -92,8 +92,10 @@ export const defaultTheme: DefaultTheme = {
9292 components : {
9393 IonChip : {
9494 margin : '4px' ,
95- paddingVertical : '6px' ,
96- paddingHorizontal : '12px' ,
95+ padding : {
96+ vertical : '6px' ,
97+ horizontal : '12px' ,
98+ } ,
9799
98100 // Sizes
99101 size : {
Original file line number Diff line number Diff line change @@ -261,8 +261,12 @@ export type DefaultTheme = BaseTheme & {
261261type Components = {
262262 IonChip ?: {
263263 margin : string | number ;
264- paddingVertical : string | number ;
265- paddingHorizontal : string | number ;
264+
265+ padding ?: {
266+ vertical : string | number ;
267+ horizontal : string | number ;
268+ } ;
269+
266270 gap ?: string | number ;
267271 lineHeight ?: string | number ;
268272
You can’t perform that action at this time.
0 commit comments