lucide-solid
Version:
A Lucide icon library package for Solid applications
42 lines (36 loc) • 1.95 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: 'M16.17 7.83 2 22',
key: 't58vo8'
}], ['path', {
d: 'M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12',
key: '17k36q'
}], ['path', {
d: 'm7.83 7.83 8.34 8.34',
key: '1d7sxk'
}]];
/**
* @component @name Clover
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/clover
* @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 Clover = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "clover"
}));
module.exports = Clover;
//# sourceMappingURL=clover.js.map