lucide-solid
Version:
A Lucide icon library package for Solid applications
23 lines (22 loc) • 1.53 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z', key: 'vv98re' }],
['path', { d: 'M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z', key: '1cyq3y' }],
['path', { d: 'M6 8h2', key: '30oboj' }],
['path', { d: 'M6 12h2', key: '32wvfc' }],
['path', { d: 'M16 8h2', key: 'msurwy' }],
['path', { d: 'M16 12h2', key: '7q9ll5' }],
];
/**
* @component @name BookOpenText
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/book-open-text
* @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 BookOpenText = (props) => (<Icon {...props} name="BookOpenText" iconNode={iconNode}/>);
export default BookOpenText;