lucide-solid
Version:
A Lucide icon library package for Solid applications
50 lines (44 loc) • 1.73 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: '6',
height: '14',
x: '2',
y: '5',
rx: '2',
key: 'dy24zr'
}], ['rect', {
width: '6',
height: '10',
x: '16',
y: '7',
rx: '2',
key: '13zkjt'
}], ['path', {
d: 'M12 2v20',
key: 't6zp3m'
}]];
/**
* @component @name AlignHorizontalJustifyCenter
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/align-horizontal-justify-center
* @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 AlignHorizontalJustifyCenter = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "align-horizontal-justify-center"
}));
module.exports = AlignHorizontalJustifyCenter;
//# sourceMappingURL=align-horizontal-justify-center.js.map