Sherlock / config / theme / ButtonGroupVSpacer.ts
ButtonGroupVSpacer.ts
Raw
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',
      },
    },
  },
});