23 lines
726 B
JavaScript
23 lines
726 B
JavaScript
'use client';
|
|
import { makeStyles, mergeClasses } from '@griffel/react';
|
|
export const teachingPopoverCarouselPageCountClassNames = {
|
|
root: 'fui-TeachingPopoverCarouselPageCount'
|
|
};
|
|
/**
|
|
* Styles for the root slot
|
|
*/ const useStyles = makeStyles({
|
|
root: {
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
justifyContent: '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;
|
|
};
|