Files
twenty/packages/twenty-front/src/modules/ui/input/states/iconPickerState.ts

12 lines
287 B
TypeScript

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