lucide-solid
Version:
A Lucide icon library package for Solid applications
51 lines (45 loc) • 1.59 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 = [['line', {
x1: '5',
x2: '19',
y1: '9',
y2: '9',
key: '1nwqeh'
}], ['line', {
x1: '5',
x2: '19',
y1: '15',
y2: '15',
key: 'g8yjpy'
}], ['line', {
x1: '19',
x2: '5',
y1: '5',
y2: '19',
key: '1x9vlm'
}]];
/**
* @component @name EqualNot
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/equal-not
* @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 EqualNot = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "equal-not"
}));
module.exports = EqualNot;
//# sourceMappingURL=equal-not.js.map