sebikostudio-icons
Version:
A collection of icon components
26 lines • 1.41 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const ShadowOuterIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "shadow outer, shadow, cast, circle",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M16.5 8C16.5 11.5899 13.5899 14.5 10 14.5C6.41015 14.5 3.5 11.5899 3.5 8C3.5 4.41015 6.41015 1.5 10 1.5C13.5899 1.5 16.5 4.41015 16.5 8Z",
stroke: "currentColor",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M10 14.5001C13.5899 14.5001 16.5 11.59 16.5 8.00011C16.5 7.25718 16.3754 6.54336 16.1458 5.87842C17.3035 7.26603 18 9.05173 18 11.0001C18 15.4184 14.4183 19.0001 10 19.0001C5.58172 19.0001 2 15.4184 2 11.0001C2 9.05173 2.69652 7.26602 3.85415 5.87842C3.62464 6.54336 3.5 7.25718 3.5 8.00011C3.5 11.59 6.41015 14.5001 10 14.5001Z",
fill: "currentColor"
})));
export default ShadowOuterIcon;