lucide-solid
Version:
A Lucide icon library package for Solid applications
45 lines (39 loc) • 1.67 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 = [['path', {
d: 'M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8',
key: '1k78r4'
}], ['path', {
d: 'M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4',
key: 'fb3tl2'
}], ['path', {
d: 'M12 4v6',
key: '1dcgq2'
}], ['path', {
d: 'M2 18h20',
key: 'ajqnye'
}]];
/**
* @component @name BedDouble
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/bed-double
* @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 BedDouble = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "bed-double"
}));
module.exports = BedDouble;
//# sourceMappingURL=bed-double.js.map