UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

8 lines (7 loc) 289 B
import { TypographyProps } from '@mui/material/Typography'; import React from 'react'; type EmptyProps = React.PropsWithChildren<{ color?: TypographyProps['color']; }>; export default function Empty({ color, children }: EmptyProps): import("react/jsx-runtime").JSX.Element; export {};