interface IDataItem { value: string; label: string; icon: string | null; group: string | null; color: string | null; } export default IDataItem;