UNPKG

@empathyco/x-tailwindcss

Version:
19 lines (17 loc) 420 B
/** * Returns the `sizes` variants for component `progress-bar`. * * @param helpers - The {@link TailwindHelpers} to generate CSS. * @returns The {@link CssStyleOptions} for the variant. */ function progressBarSizes({ theme }) { return { md: { height: theme('x.spacing.4'), }, lg: { height: theme('x.spacing.8'), }, }; } export { progressBarSizes };