import React from "react" import { classNames } from "../../../utils" import { CenterAligned } from "../../CenterAligned" import { EmptyState, EmptyStateProps } from "../../EmptyState" import { ScatterplotSkeleton, ScatterplotSkeletonProps, } from "./ScatterplotSkeleton" type Props = { className?: string overrides?: { Skeleton?: Partial EmptyState?: Partial } } export function ScatterplotEmptyState({ overrides, className }: Props) { return ( ) }