lucide-solid
Version:
A Lucide icon library package for Solid applications
59 lines (53 loc) • 1.8 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 = [['rect', {
width: '18',
height: '18',
x: '3',
y: '3',
rx: '2',
ry: '2',
key: '1m3agn'
}], ['line', {
x1: '8',
x2: '16',
y1: '12',
y2: '12',
key: '1jonct'
}], ['line', {
x1: '12',
x2: '12',
y1: '16',
y2: '16',
key: 'aqc6ln'
}], ['line', {
x1: '12',
x2: '12',
y1: '8',
y2: '8',
key: '1mkcni'
}]];
/**
* @component @name SquareDivide
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/square-divide
* @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 SquareDivide = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "square-divide"
}));
module.exports = SquareDivide;
//# sourceMappingURL=square-divide.js.map