lucide-solid
Version:
A Lucide icon library package for Solid applications
39 lines (33 loc) • 1.71 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: 'm17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z',
key: 'cpyugq'
}], ['path', {
d: 'M12 22v-3',
key: 'kmzjlo'
}]];
/**
* @component @name TreePine
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/tree-pine
* @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 TreePine = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "tree-pine"
}));
module.exports = TreePine;
//# sourceMappingURL=tree-pine.js.map