@spratch/whtable
Version:
A typescript react accessible table component for WealthHealth
12 lines (11 loc) • 355 B
TypeScript
import { CtaProps } from './cta';
import { JSX } from 'react';
type Props = {
Icon?: React.ElementType;
title: string;
description?: JSX.Element | string;
cta?: CtaProps;
isLoading?: boolean;
};
export default function EmptyList({ Icon, title, description, cta, isLoading }: Props): import("react/jsx-runtime").JSX.Element;
export {};