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/packages/webapp/src/svg/SmallOrb.js

22 lines
584 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 SmallOrb({ className }) {
return (
<svg className={className} viewBox="0 0 18 18" width={18} height={18} xmlns="http://www.w3.org/2000/svg">
<path
d="M9 17A8 8 0 109 1a8 8 0 000 16zm4-1.072C11.087 17.033 7.745 14.826 5.536 11 3.326 7.174 3.086 3.176 5 2.072"
stroke="currentColor"
strokeWidth="2"
fill="none"
fillRule="evenodd"
strokeLinejoin="round"
/>
</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
SmallOrb.propTypes = {
2020-03-23 14:02:47 +00:00
className: PropTypes.string,
2020-02-28 11:30:27 +00:00
};