lucide-solid
Version:
A Lucide icon library package for Solid applications
40 lines (35 loc) • 1.95 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 = [['path', {
d: 'M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z',
key: '169xi5'
}], ['path', {
d: 'M15 5.764v15',
key: '1pn4in'
}], ['path', {
d: 'M9 3.236v15',
key: '1uimfh'
}]];
/**
* @component @name Map
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/map
* @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 Map = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "map"
}));
export { Map as default };
//# sourceMappingURL=map.js.map