// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from 'react'; import { DefaultIcon, ProjectsIcon } from '~/components/icon/icon'; import { EmptyResource } from '~/models/empty'; import { DetailsData } from "./details-data"; import { DefaultView } from '~/components/default-view/default-view'; export class EmptyDetails extends DetailsData { getIcon(className?: string) { return ; } getDetails() { return ; } }