UNPKG

box-ui-elements

Version:
9 lines (8 loc) 270 B
import React from 'react'; import type { View } from '../../../common/types/core'; export interface EmptyViewProps { isLoading: boolean; view: View; } declare const EmptyView: ({ isLoading, view }: EmptyViewProps) => React.JSX.Element; export default EmptyView;