lucide-solid
Version:
A Lucide icon library package for Solid applications
36 lines (30 loc) • 1.62 kB
JavaScript
/**
* @license lucide-solid v0.501.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: 'M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z',
key: 'd5y1f'
}]];
/**
* @component @name RectangleGoggles
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/rectangle-goggles
* @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 RectangleGoggles = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "rectangle-goggles"
}));
module.exports = RectangleGoggles;
//# sourceMappingURL=rectangle-goggles.js.map