@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
16 lines (14 loc) • 325 B
JavaScript
'use client';
function getStaticClassNames({
themeName,
classNamesPrefix,
selector,
withStaticClass
}) {
if (withStaticClass === false) {
return [];
}
return themeName.map((n) => `${classNamesPrefix}-${n}-${selector}`);
}
export { getStaticClassNames };
//# sourceMappingURL=get-static-class-names.mjs.map