mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
7 lines
252 B
JavaScript
7 lines
252 B
JavaScript
import BaseStyle from 'primevue/base/style';
|
|
import { useStyle } from 'primevue/usestyle';
|
|
|
|
export default BaseStyle.extend({
|
|
name: 'common',
|
|
loadGlobalStyle: (globalCSS, options = {}) => useStyle(globalCSS, { name: 'global', ...options })
|
|
});
|