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