This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/src/svg/Pyramid.js

23 lines
605 B
JavaScript
Raw Normal View History

2020-02-18 16:25:03 +00:00
import React from "react";
2020-02-28 11:30:27 +00:00
import PropTypes from "prop-types";
2020-02-12 17:23:10 +00:00
export default function Pyramid({ className }) {
return (
<svg className={className} viewBox="0 0 38 38" width={38} height={38} xmlns="http://www.w3.org/2000/svg">
<g fill="none" fillRule="evenodd">
<path fill="currentColor" d="M19 25L1 31l18 6 18-6z" />
<path
d="M19 1L1 31l18 6 18-6L19 1zm0 0v36m18-6l-18-6-18 6"
stroke="currentColor"
strokeWidth="2"
strokeLinejoin="round"
/>
</g>
</svg>
2020-02-18 16:25:03 +00:00
);
2020-02-12 17:23:10 +00:00
}
2020-02-28 11:30:27 +00:00
Pyramid.propTypes = {
2020-03-23 14:02:47 +00:00
className: PropTypes.string,
2020-02-28 11:30:27 +00:00
};