@styled-icons/simple-icons
Version:
Simple Icons available as Styled Components
23 lines • 832 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Shadow = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M12 0C5.373 0 0 5.373 0 12a11.97 11.97 0 0 0 3.918 8.87 4.457 4.457 0 0 1-.2-1.324 4.453 4.453 0 1 1 5.891 4.216c.773.156 1.572.238 2.391.238 6.627 0 12-5.373 12-12S18.627 0 12 0Z"
}));
});
Shadow.displayName = 'Shadow';
export var ShadowDimensions = {
height: 24,
width: 24
};