lucide-solid
Version:
A Lucide icon library package for Solid applications
45 lines (39 loc) • 1.84 kB
JavaScript
/**
* @license lucide-solid v0.487.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: 'm16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8',
key: 'n7qcjb'
}], ['path', {
d: 'M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7',
key: 'd0u48b'
}], ['path', {
d: 'm2.1 21.8 6.4-6.3',
key: 'yn04lh'
}], ['path', {
d: 'm19 5-7 7',
key: '194lzd'
}]];
/**
* @component @name UtensilsCrossed
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/utensils-crossed
* @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 UtensilsCrossed = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "utensils-crossed"
}));
module.exports = UtensilsCrossed;
//# sourceMappingURL=utensils-crossed.js.map