styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.38 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.PlaneOutline = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M20.988 12.396L16 9.545V4.75c0-1.93-1.57-3.5-3.5-3.5S9 2.82 9 4.75v4.795l-4.988 2.851a3 3 0 002.313 5.489L9 17.12v.838l-.874.699a3 3 0 003.216 5.025c.004-.001.5-.183 1.158-.183l1.158.183a2.998 2.998 0 003.216-5.025L16 17.958v-.838l2.676.765a2.999 2.999 0 002.312-5.489zm-.566 2.992a1 1 0 01-1.196.573L14 14.469v4.451l1.625 1.3a1 1 0 01-1.072 1.675c-.008-.004-.824-.395-2.053-.395s-2.045.391-2.053.395a1 1 0 01-1.072-1.675L11 18.92v-4.451l-5.226 1.493a1 1 0 01-.77-1.829L11 10.706V4.75c0-.827.673-1.5 1.5-1.5s1.5.673 1.5 1.5v5.956l5.996 3.426a1 1 0 01.426 1.256z", key: "k0" }),
React.createElement("circle", { cx: 12.5, cy: 4.5, r: .5, key: "k1" })));
});
exports.PlaneOutline.displayName = 'PlaneOutline';
exports.PlaneOutlineDimensions = { height: 24, width: 24 };
;