Refactored icons.

This commit is contained in:
Mike Cao 2025-05-27 00:50:28 -07:00
parent 18eceee4c4
commit 99330a1a4d
86 changed files with 310 additions and 273 deletions

View file

@ -40,6 +40,7 @@ export * from './useFields';
export * from './useFilters';
export * from './useForceUpdate';
export * from './useFormat';
export * from './useGlobalState';
export * from './useLanguageNames';
export * from './useLocale';
export * from './useMessages';

View file

@ -10,4 +10,4 @@ const useGlobalState = (key: string, value?: any) => {
return [store(state => state[key]), (value: any) => store.setState({ [key]: value })];
};
export default useGlobalState;
export { useGlobalState };