/** * @upsetjs/react * https://github.com/upsetjs/upsetjs * * Copyright (c) 2021 Samuel Gratzl */ import React, { PropsWithChildren } from 'react'; import { mergeColor } from './utils'; const UpSetDot = /*!#__PURE__*/ React.memo(function UpSetDot({ cx, r, cy, name, className, style, fill, }: PropsWithChildren<{ r: number; cx: number; cy: number; className: string; fill?: string; name: string; style?: React.CSSProperties; }>) { return ( {name && {name}} ); }); export default UpSetDot;