lucide-solid
Version:
A Lucide icon library package for Solid applications.
41 lines (35 loc) • 1.5 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: 'M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z',
key: '1m5n7q'
}], ['circle', {
cx: '14',
cy: '12',
r: '8',
key: '1pag6k'
}]];
/**
* @component @name RectangleCircle
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/rectangle-circle
* @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 RectangleCircle = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "rectangle-circle"
}));
module.exports = RectangleCircle;
//# sourceMappingURL=rectangle-circle.js.map