23 lines
338 B
TypeScript
23 lines
338 B
TypeScript
import { createStyle } from '@gluestack-style/react';
|
|
|
|
export const ButtonGroupHSpacer = createStyle({
|
|
variants: {
|
|
space: {
|
|
xs: {
|
|
w: '$1',
|
|
},
|
|
sm: {
|
|
w: '$1.5',
|
|
},
|
|
md: {
|
|
w: '$2',
|
|
},
|
|
lg: {
|
|
w: '$3',
|
|
},
|
|
xl: {
|
|
w: '$4',
|
|
},
|
|
},
|
|
},
|
|
});
|