@datalayer/core
Version:
**Datalayer Core**
14 lines (13 loc) • 358 B
TypeScript
import { VariantType } from './VariantType';
type IDownloadCSVButtonProps = {
data?: object;
fileName: string;
variant: VariantType;
};
export declare const DownloadCSVButton: {
(props: IDownloadCSVButtonProps): import("react/jsx-runtime").JSX.Element;
defaultProps: {
variant: string;
};
};
export default DownloadCSVButton;