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