lucide-solid
Version:
A Lucide icon library package for Solid applications
52 lines (46 loc) • 1.92 kB
JavaScript
/**
* @license lucide-solid v0.488.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
;
var web = require('solid-js/web');
var Icon = require('../Icon.js');
const iconNode = [['path', {
d: 'M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2',
key: 'wrbu53'
}], ['path', {
d: 'M15 18H9',
key: '1lyqi6'
}], ['path', {
d: 'M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14',
key: 'lysw3i'
}], ['circle', {
cx: '17',
cy: '18',
r: '2',
key: '332jqn'
}], ['circle', {
cx: '7',
cy: '18',
r: '2',
key: '19iecd'
}]];
/**
* @component @name Truck
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/truck
* @see https://lucide.dev/guide/packages/lucide-solid - Documentation
*
* @param {Object} props - Lucide icons props and any valid SVG attribute
* @returns {JSX.Element} JSX Element
*
*/
const Truck = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "truck"
}));
module.exports = Truck;
//# sourceMappingURL=truck.js.map