lucide-solid
Version:
A Lucide icon library package for Solid applications
46 lines (41 loc) • 1.98 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: 'M13 22H4a2 2 0 0 1 0-4h12',
key: 'bt3f23'
}], ['path', {
d: 'M13.236 18a3 3 0 0 0-2.2-5',
key: '1tbvmo'
}], ['path', {
d: 'M16 9h.01',
key: '1bdo4e'
}], ['path', {
d: 'M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3',
key: '9ch7kn'
}], ['path', {
d: 'M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18',
key: '3s7e9i'
}]];
/**
* @component @name Rat
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/rat
* @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 Rat = props => createComponent(Icon, mergeProps(props, {
iconNode: iconNode,
name: "rat"
}));
export { Rat as default };
//# sourceMappingURL=rat.js.map