UNPKG

@empathyco/x-tailwindcss

Version:
23 lines (21 loc) 531 B
/** * Returns the `sizes` variants for component `title3`. * * @param helpers - The {@link TailwindHelpers} to generate CSS. * @returns The {@link CssStyleOptions} for the variant. */ function titleSizes({ theme }) { return { sm: { fontSize: theme('x.fontSize.sm'), }, md: { fontSize: theme('x.fontSize.md'), lineHeight: theme('x.lineHeight.md'), }, lg: { fontSize: theme('x.fontSize.xl'), }, }; } export { titleSizes };