lucide-solid
Version:
A Lucide icon library package for Solid applications
52 lines (47 loc) • 1.94 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.
*/
import { createComponent, mergeProps } from 'solid-js/web';
import Icon from '../Icon.js';
const iconNode = [['path', {
d: 'm15 11-1 9',
key: '5wnq3a'
}], ['path', {
d: 'm19 11-4-7',
key: 'cnml18'
}], ['path', {
d: 'M2 11h20',
key: '3eubbj'
}], ['path', {
d: 'm3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4',
key: 'yiazzp'
}], ['path', {
d: 'M4.5 15.5h15',
key: '13mye1'
}], ['path', {
d: 'm5 11 4-7',
key: '116ra9'
}], ['path', {
d: 'm9 11 1 9',
key: '1ojof7'
}]];
/**
* @component @name ShoppingBasket
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/shopping-basket
* @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 ShoppingBasket = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "shopping-basket"
}));
export { ShoppingBasket as default };
//# sourceMappingURL=shopping-basket.js.map