lucide-solid
Version:
A Lucide icon library package for Solid applications
45 lines (39 loc) • 1.63 kB
JavaScript
/**
* @license lucide-solid v0.488.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: 'M13 17V9',
key: '1fwyjl'
}], ['path', {
d: 'M18 17v-3',
key: '1sqioe'
}], ['path', {
d: 'M3 3v16a2 2 0 0 0 2 2h16',
key: 'c24i48'
}], ['path', {
d: 'M8 17V5',
key: '1wzmnc'
}]];
/**
* @component @name ChartColumnDecreasing
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/chart-column-decreasing
* @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 ChartColumnDecreasing = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "chart-column-decreasing"
}));
module.exports = ChartColumnDecreasing;
//# sourceMappingURL=chart-column-decreasing.js.map