28 lines
812 B
JavaScript
28 lines
812 B
JavaScript
'use client';
|
|
|
|
import { __styles, mergeClasses } from '@griffel/react';
|
|
export const teachingPopoverCarouselPageCountClassNames = {
|
|
root: 'fui-TeachingPopoverCarouselPageCount'
|
|
};
|
|
/**
|
|
* Styles for the root slot
|
|
*/
|
|
const useStyles = /*#__PURE__*/__styles({
|
|
root: {
|
|
mc9l5x: "f22iagw",
|
|
Bt984gj: "f122n59",
|
|
Brf1p80: "f4d9j23"
|
|
}
|
|
}, {
|
|
d: [".f22iagw{display:flex;}", ".f122n59{align-items:center;}", ".f4d9j23{justify-content:center;}"]
|
|
});
|
|
/**
|
|
* Apply styling to the TeachingPopoverCarouselPageCount slots based on the state
|
|
*/
|
|
export const useTeachingPopoverCarouselPageCountStyles_unstable = state => {
|
|
'use no memo';
|
|
|
|
const styles = useStyles();
|
|
state.root.className = mergeClasses(teachingPopoverCarouselPageCountClassNames.root, styles.root, state.root.className);
|
|
return state;
|
|
}; |