@empathyco/x-tailwindcss
Version:
Empathy X Tailwind plugin
19 lines (17 loc) • 420 B
JavaScript
/**
* 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 };