lucide-solid
Version:
A Lucide icon library package for Solid applications.
46 lines (41 loc) • 2.35 kB
JavaScript
/**
* @license lucide-solid v0.536.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: 'M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487',
key: '14kkz9'
}], ['path', {
d: 'M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132',
key: '1g7v07'
}], ['path', {
d: 'M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42',
key: 'ratg6b'
}], ['path', {
d: 'M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14',
key: '4454f0'
}], ['path', {
d: 'M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676',
key: 'qmemie'
}]];
/**
* @component @name Croissant
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/croissant
* @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 Croissant = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "croissant"
}));
export { Croissant as default };
//# sourceMappingURL=croissant.js.map