13 lines
445 B
JavaScript
13 lines
445 B
JavaScript
const preact = require('preact');
|
|
|
|
module.exports = function triangle(classes) {
|
|
return (
|
|
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 200 200" class={classes} transform="rotate(45)" >
|
|
<rect x="25" y="25" width="175" height="175"/>
|
|
<rect x="55" y="55" width="115" height="115"/>
|
|
<rect x="85" y="85" width="55" height="55"/>
|
|
</svg>
|
|
);
|
|
};
|