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

27 lines
515 B
JavaScript
Executable File

import React, { PropTypes } from 'react';
export default class TriangleDrawComponent extends React.Component {
constructor(props) {
super(props);
}
render() {
var style = {
WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)',
};
return (
//style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); stroke-linejoin: round;"
<path
style={style}
fill=""
stroke=""
d=""
stroke-width=""
stroke-linejoin=""
>
</path>
);
}
}