styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 913 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Plane = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M19.996 13.507L14 10.081V4.125c0-.827-.673-1.5-1.5-1.5s-1.5.673-1.5 1.5v5.956l-5.996 3.426a1 1 0 00.77 1.829L11 13.844v4.451l-1.625 1.3a1 1 0 00.996 1.709l2.129-.852 2.129.852a.998.998 0 001.235-.426 1.001 1.001 0 00-.239-1.284L14 18.294v-4.451l5.226 1.493.274.039a1 1 0 00.496-1.868zM12.5 4.375a.5.5 0 110-1 .5.5 0 010 1z", key: "k0" })));
});
Plane.displayName = 'Plane';
export var PlaneDimensions = { height: 24, width: 24 };