import type { SizableStackProps } from '@tamagui/stacks' import type { SizeVariantSpreadFunction } from '@tamagui/web' export const getShapeSize: SizeVariantSpreadFunction = ( size, { tokens } ) => { const width = tokens.size[size] ?? size const height = tokens.size[size] ?? size return { width, height, minWidth: width, maxWidth: width, maxHeight: height, minHeight: height, } }