primevue
Version:
PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc
21 lines (18 loc) • 478 B
JavaScript
import { style } from '@primeuix/styles/scrolltop';
import BaseStyle from '@primevue/core/base/style';
var classes = {
root: function root(_ref) {
var props = _ref.props;
return ['p-scrolltop', {
'p-scrolltop-sticky': props.target !== 'window'
}];
},
icon: 'p-scrolltop-icon'
};
var ScrollTopStyle = BaseStyle.extend({
name: 'scrolltop',
style: style,
classes: classes
});
export { ScrollTopStyle as default };
//# sourceMappingURL=index.mjs.map