lucide-solid
Version:
A Lucide icon library package for Solid applications.
47 lines (41 loc) • 1.73 kB
JavaScript
/**
* @license lucide-solid v0.562.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: 'M11 22H5.5a1 1 0 0 1 0-5h4.501',
key: 'mcbepb'
}], ['path', {
d: 'm21 22-1.879-1.878',
key: '12q7x1'
}], ['path', {
d: 'M3 19.5v-15A2.5 2.5 0 0 1 5.5 2H18a1 1 0 0 1 1 1v8',
key: 'olfd5n'
}], ['circle', {
cx: '17',
cy: '18',
r: '3',
key: '82mm0e'
}]];
/**
* @component @name BookSearch
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/book-search
* @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 BookSearch = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "book-search"
}));
module.exports = BookSearch;
//# sourceMappingURL=book-search.js.map