Files
weave-scope/client/app/scripts/charts/node-shape-rounded-square.js
Simon Howe d31aadf7b1 Metrics on canvas!
- Adds metric on canvas support for more shapes
- More variation from the debug bar.
2016-04-04 17:48:40 +02:00

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" />
);
}