@empathyco/x-tailwindcss
Version:
Empathy X Tailwind plugin
18 lines (15 loc) • 363 B
JavaScript
import { scrollDefault } from './default.js';
/**
* Returns the component `scroll` CSS.
*
* @param helpers - The {@link TailwindHelpers} to generate CSS.
* @returns The {@link CssStyleOptions} for the component.
*/
function scroll(helpers) {
return {
'.x-scroll': {
...scrollDefault(helpers),
},
};
}
export { scroll };