@styled-icons/simple-icons
Version:
Simple Icons available as Styled Components
23 lines • 751 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Osano = /*#__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 6.091A5.909 5.909 0 1 0 17.909 12 5.91 5.91 0 0 0 12 6.091M12 0A12 12 0 1 1 0 12 12 12 0 0 1 12 0z"
}));
});
Osano.displayName = 'Osano';
export var OsanoDimensions = {
height: 24,
width: 24
};