2016-05-10 06:06:03 +08:00
|
|
|
import React, { PropTypes } from 'react';
|
|
|
|
|
|
|
|
export default class TriangleDrawComponent extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2016-05-26 03:24:01 +08:00
|
|
|
var style = {
|
|
|
|
WebkitTapHighlightColor: 'rgba(0, 0, 0, 0)',
|
|
|
|
};
|
2016-05-10 06:06:03 +08:00
|
|
|
return (
|
2016-05-25 06:50:22 +08:00
|
|
|
//style="-webkit-tap-highlight-color: rgba(0, 0, 0, 0); stroke-linejoin: round;"
|
|
|
|
<path
|
2016-05-26 03:24:01 +08:00
|
|
|
style={style}
|
2016-05-25 06:50:22 +08:00
|
|
|
fill=""
|
|
|
|
stroke=""
|
|
|
|
d=""
|
|
|
|
stroke-width=""
|
|
|
|
stroke-linejoin=""
|
|
|
|
>
|
|
|
|
</path>
|
2016-05-10 06:06:03 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|