import React from "react"; import clsx from "clsx"; type Props = { x: string | number; y: string | number; className?: string; }; export const ShowcaseIndicator = React.memo(function ShowcaseIndicatorBase({ x, y, className, }: Props) { return (
{[0, 400, 800].map((d) => (
))}
); });