UNPKG

@empathyco/x-tailwindcss

Version:
20 lines (19 loc) 645 B
import type { TailwindHelpers } from '../types'; /** * Default dynamic utility styles. * * @param helpers - A set of tailwind helpers to create the dynamic utilities. * @returns All the styles for each utility and the values they are going to be generated with. * * @public */ export default function dynamicUtilities({ theme }: TailwindHelpers): { 'font-util': { styles: (value: any) => { fontSize: any; }; values: Partial<import("tailwindcss/types/config").CustomThemeConfig & { extend: Partial<import("tailwindcss/types/config").CustomThemeConfig>; }> | undefined; }; };