Files
twenty_crm/packages/twenty-front/src/modules/ui/input/states/iconsState.ts
2023-12-10 18:10:54 +01:00

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: {},
});