@styled-icons/simple-icons
Version:
Simple Icons available as Styled Components
23 lines • 981 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Canonical = /*#__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: "M24 12c0 6.627-5.373 12-12 12-6.628 0-12-5.373-12-12C0 5.372 5.372 0 12 0c6.627 0 12 5.372 12 12zM12 2.92A9.08 9.08 0 0 0 2.92 12 9.08 9.08 0 0 0 12 21.08 9.08 9.08 0 0 0 21.081 12 9.08 9.08 0 0 0 12 2.92zm0 16.722A7.64 7.64 0 0 1 4.36 12 7.64 7.64 0 0 1 12 4.36 7.64 7.64 0 0 1 19.641 12a7.64 7.64 0 0 1-7.64 7.641z"
}));
});
Canonical.displayName = 'Canonical';
export var CanonicalDimensions = {
height: 24,
width: 24
};