@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
20 lines (18 loc) • 813 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const H5CircleOutlined = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 14 14",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "currentColor"
}, /*#__PURE__*/ React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M7 10.5C8.933 10.5 10.5 8.933 10.5 7C10.5 5.067 8.933 3.5 7 3.5C5.067 3.5 3.5 5.067 3.5 7C3.5 8.933 5.067 10.5 7 10.5ZM7 14C10.866 14 14 10.866 14 7C14 3.13401 10.866 0 7 0C3.13401 0 0 3.13401 0 7C0 10.866 3.13401 14 7 14Z",
fill: "currentColor"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(H5CircleOutlined);
export default ForwardRef;