import { createState, IconApps } from 'twenty-ui'; import { IconComponent } from '@/ui/display/icon/types/IconComponent'; type IconPickerState = { Icon: IconComponent; iconKey: string; }; export const iconPickerState = createState({ key: 'iconPickerState', defaultValue: { Icon: IconApps, iconKey: 'IconApps' }, });