@empathyco/x-tailwindcss
Version:
Empathy X Tailwind plugin
16 lines (13 loc) • 380 B
JavaScript
import { dynamicLayoutContainer } from './layout-container.js';
/**
* Returns the dynamic features of the `layout` CSS.
*
* @param helpers - The {@link TailwindHelpers} to generate CSS.
* @returns The {@link CssStyleOptions} for the component.
*/
function dynamicLayout(helpers) {
return {
...dynamicLayoutContainer(helpers),
};
}
export { dynamicLayout };