lucide-solid
Version:
A Lucide icon library package for Solid applications
51 lines (45 loc) • 1.56 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 = [['line', {
x1: '4',
x2: '20',
y1: '12',
y2: '12',
key: '1e0a9i'
}], ['line', {
x1: '4',
x2: '20',
y1: '6',
y2: '6',
key: '1owob3'
}], ['line', {
x1: '4',
x2: '20',
y1: '18',
y2: '18',
key: 'yk5zj1'
}]];
/**
* @component @name Menu
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/menu
* @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 Menu = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "menu"
}));
module.exports = Menu;
//# sourceMappingURL=menu.js.map