lucide-solid
Version:
A Lucide icon library package for Solid applications
49 lines (43 loc) • 1.68 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',
key: 'afitv7'
}], ['path', {
d: 'M12 12H9.5a2.5 2.5 0 0 1 0-5H17',
key: '1l9586'
}], ['path', {
d: 'M12 7v10',
key: 'jspqdw'
}], ['path', {
d: 'M16 7v10',
key: 'lavkr4'
}]];
/**
* @component @name SquarePilcrow
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/square-pilcrow
* @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 SquarePilcrow = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "square-pilcrow"
}));
module.exports = SquarePilcrow;
//# sourceMappingURL=square-pilcrow.js.map