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