9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { IconComponent } from '@/ui/display/icon/types/IconComponent';
|
|
|
|
export const iconsState = atom<Record<string, IconComponent>>({
|
|
key: 'iconsState',
|
|
default: {},
|
|
});
|