lucide-solid
Version:
A Lucide icon library package for Solid applications.
49 lines (44 loc) • 1.81 kB
JavaScript
/**
* @license lucide-solid v0.562.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 5h10',
key: '1cz7ny'
}], ['path', {
d: 'M11 12h10',
key: '1438ji'
}], ['path', {
d: 'M11 19h10',
key: '11t30w'
}], ['path', {
d: 'M4 4h1v5',
key: '10yrso'
}], ['path', {
d: 'M4 9h2',
key: 'r1h2o0'
}], ['path', {
d: 'M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02',
key: 'xtkcd5'
}]];
/**
* @component @name ListOrdered
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/list-ordered
* @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 ListOrdered = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "list-ordered"
}));
export { ListOrdered as default };
//# sourceMappingURL=list-ordered.js.map