Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
@@ -0,0 +1,18 @@
import { __resetStyles, mergeClasses } from '@griffel/react';
export const ratingClassNames = {
root: 'fui-Rating'
};
/**
* Styles for the root slot
*/
const useRootClassName = /*#__PURE__*/__resetStyles("r2imjyh", null, [".r2imjyh{display:flex;flex-wrap:wrap;}"]);
/**
* Apply styling to the Rating slots based on the state
*/
export const useRatingStyles_unstable = state => {
'use no memo';
const rootClassName = useRootClassName();
state.root.className = mergeClasses(ratingClassNames.root, rootClassName, state.root.className);
return state;
};