mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 10:41:14 +00:00
11 lines
294 B
JavaScript
11 lines
294 B
JavaScript
import React from 'react';
|
|
import NodeShapeSquare from './node-shape-square';
|
|
|
|
// TODO how to express a cmp in terms of another cmp? (Rather than a sub-cmp as here).
|
|
|
|
export default function NodeShapeRoundedSquare(props) {
|
|
return (
|
|
<NodeShapeSquare {...props} rx="0.4" ry="0.4" />
|
|
);
|
|
}
|