bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/shapes/ellipse/component.jsx
2016-05-30 15:07:02 -07:00

28 lines
510 B
JavaScript
Executable File

import React, { PropTypes } from 'react';
export default class EllipseDrawComponent extends React.Component {
constructor(props) {
super(props);
}
render() {
// style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"
var style = {
WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)',
};
return (
<ellipse
cx=""
cy=""
rx=""
ry=""
fill=""
stroke=""
stroke-width=""
style={style}
>
</ellipse>
);
}
}