// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { DefaultIcon, ProjectsIcon } from '../../icon/icon'; import { AbstractItem } from './abstract-item'; import { EmptyState } from '../../empty-state/empty-state'; import { EmptyResource } from '../../../models/empty'; export class EmptyItem extends AbstractItem { getIcon(className?: string) { return ; } buildDetails() { return ; } }