@empathyco/x-tailwindcss
Version:
Empathy X Tailwind plugin
18 lines (15 loc) • 448 B
JavaScript
import { dynamicLayout } from './dynamic-components/layout/index.js';
/**
* Default dynamic component styles.
*
* @param helpers - A set of tailwind helpers to create the dynamic components.
* @returns All the styles for each component and the values they are going to be generated with.
*
* @public
*/
function dynamicComponents(helpers) {
return {
...dynamicLayout(helpers),
};
}
export { dynamicComponents as default };