lucide-solid
Version:
A Lucide icon library package for Solid applications.
48 lines (42 loc) • 1.87 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.
*/
;
var web = require('solid-js/web');
var Icon = require('../Icon.js');
const iconNode = [['path', {
d: 'm17 18-1.535 1.605a5 5 0 0 1-8-1.5',
key: 'adpv5j'
}], ['path', {
d: 'M17 22v-4h-4',
key: 'ex1ofj'
}], ['path', {
d: 'M20.996 15.251A4.5 4.5 0 0 0 17.495 8h-1.79a7 7 0 1 0-12.709 5.607',
key: 'ziqt14'
}], ['path', {
d: 'M7 10v4h4',
key: '1j6gx1'
}], ['path', {
d: 'm7 14 1.535-1.605a5 5 0 0 1 8 1.5',
key: '19q5h7'
}]];
/**
* @component @name CloudSync
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/cloud-sync
* @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 CloudSync = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "cloud-sync"
}));
module.exports = CloudSync;
//# sourceMappingURL=cloud-sync.js.map