import { css } from '@patternfly/react-styles'; import styles from '../../../css/topology-components'; import { useAnchor } from '../../../behavior'; import { RectAnchor } from '../../../anchors'; import { ShapeProps } from './shapeUtils'; type RectangleProps = ShapeProps & { cornerRadius?: number; }; const Rectangle: React.FunctionComponent = ({ className = css(styles.topologyNodeBackground), width, height, filter, cornerRadius = 15, dndDropRef }) => { useAnchor(RectAnchor); return ( ); }; export default Rectangle;