import { css } from '@patternfly/react-styles'; import styles from '../../../css/topology-components'; import { useAnchor } from '../../../behavior'; import { EllipseAnchor } from '../../../anchors'; import { ShapeProps } from './shapeUtils'; type EllipseProps = ShapeProps; const Ellipse: React.FunctionComponent = ({ className = css(styles.topologyNodeBackground), width, height, filter, dndDropRef }) => { useAnchor(EllipseAnchor); return ( ); }; export default Ellipse;