lucide-solid
Version:
A Lucide icon library package for Solid applications
46 lines (41 loc) • 1.59 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.
*/
import { createComponent, mergeProps } from 'solid-js/web';
import Icon from '../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 => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "list-x"
}));
export { ListX as default };
//# sourceMappingURL=list-x.js.map