lucide-solid
Version:
A Lucide icon library package for Solid applications
48 lines (42 loc) • 1.58 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: 'M11 12H3',
key: '51ecnj'
}], ['path', {
d: 'M16 6H3',
key: '1wxfjs'
}], ['path', {
d: 'M16 18H3',
key: '12xzn7'
}], ['path', {
d: 'm19 10-4 4',
key: '1tz659'
}], ['path', {
d: 'm15 10 4 4',
key: '1n7nei'
}]];
/**
* @component @name ListX
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/list-x
* @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 ListX = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "list-x"
}));
module.exports = ListX;
//# sourceMappingURL=list-x.js.map