bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/shapes/rectangle/component.jsx

32 lines
586 B
React
Raw Normal View History

2016-05-10 06:06:03 +08:00
import React, { PropTypes } from 'react';
export default class RectangleDrawComponent extends React.Component {
constructor(props) {
super(props);
}
render() {
var style = {
WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)',
};
2016-05-10 06:06:03 +08:00
return (
2016-05-27 08:13:53 +08:00
//style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"
<rect
x=""
y=""
width=""
height=""
r=""
rx=""
ry=""
fill=""
stroke=""
stroke-width=""
style={style}
2016-05-27 08:13:53 +08:00
>
</rect>
2016-05-10 06:06:03 +08:00
);
}
}