lucide-solid
Version:
A Lucide icon library package for Solid applications
39 lines (33 loc) • 1.64 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: 'M12 7v14',
key: '1akyts'
}], ['path', {
d: 'M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z',
key: 'ruj8y'
}]];
/**
* @component @name BookOpen
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/book-open
* @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 BookOpen = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "book-open"
}));
module.exports = BookOpen;
//# sourceMappingURL=book-open.js.map