mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 02:30:45 +00:00
12 lines
302 B
JavaScript
12 lines
302 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).
|
|
// HOC!
|
|
|
|
export default function NodeShapeRoundedSquare(props) {
|
|
return (
|
|
<NodeShapeSquare {...props} rx="0.4" ry="0.4" />
|
|
);
|
|
}
|