UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

22 lines (21 loc) 1.1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.Truck = React.forwardRef(function (props, ref) { var attrs = { "fill": "none", "xmlns": "http://www.w3.org/2000/svg", "stroke": "currentColor", "strokeLinecap": "round", "strokeLinejoin": "round", }; return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("rect", { width: 15, height: 13, x: 1, y: 3, key: "k0" }), React.createElement("polygon", { points: "16 8 20 8 23 11 23 16 16 16 16 8", key: "k1" }), React.createElement("circle", { cx: 5.5, cy: 18.5, r: 2.5, key: "k2" }), React.createElement("circle", { cx: 18.5, cy: 18.5, r: 2.5, key: "k3" }))); }); exports.Truck.displayName = 'Truck'; exports.TruckDimensions = { height: 24, width: 24 };