lucide-solid
Version:
A Lucide icon library package for Solid applications
49 lines (44 loc) • 1.71 kB
JavaScript
/**
* @license lucide-solid v0.487.0 - ISC
*
* This source code is licensed under the ISC license.
* See the LICENSE file in the root directory of this source tree.
*/
import { createComponent, mergeProps } from 'solid-js/web';
import Icon from '../Icon.js';
const iconNode = [['polyline', {
points: '4 14 10 14 10 20',
key: '11kfnr'
}], ['polyline', {
points: '20 10 14 10 14 4',
key: 'rlmsce'
}], ['line', {
x1: '14',
x2: '21',
y1: '10',
y2: '3',
key: 'o5lafz'
}], ['line', {
x1: '3',
x2: '10',
y1: '21',
y2: '14',
key: '1atl0r'
}]];
/**
* @component @name Minimize2
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/minimize-2
* @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 Minimize2 = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "minimize-2"
}));
export { Minimize2 as default };
//# sourceMappingURL=minimize-2.js.map