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

28 lines
510 B
React
Raw Normal View History

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