lucide-solid
Version:
A Lucide icon library package for Solid applications.
42 lines (36 loc) • 1.51 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: 'M12 3v12',
key: '1x0j5s'
}], ['path', {
d: 'm17 8-5-5-5 5',
key: '7q97r8'
}], ['path', {
d: 'M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4',
key: 'ih7n3h'
}]];
/**
* @component @name Upload
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/upload
* @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 Upload = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "upload"
}));
module.exports = Upload;
//# sourceMappingURL=upload.js.map