@styled-icons/simple-icons
Version:
Simple Icons available as Styled Components
23 lines • 792 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Pytorchlightning = /*#__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 0 1.75 6v12L12 24l10.25-6V6zm-1.775 18 1.08-4.657-2.428-2.397L13.79 6l-1.082 4.665 2.414 2.384z"
}));
});
Pytorchlightning.displayName = 'Pytorchlightning';
export var PytorchlightningDimensions = {
height: 24,
width: 24
};