lucide-solid
Version:
A Lucide icon library package for Solid applications
42 lines (36 loc) • 1.82 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: 'M5 22h14',
key: 'ehvnwv'
}], ['path', {
d: 'M19.27 13.73A2.5 2.5 0 0 0 17.5 13h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-1.5c0-.66-.26-1.3-.73-1.77Z',
key: '1sy9ra'
}], ['path', {
d: 'M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-3-3c-1.66 0-3 1-3 3s1 2 1 3.5V13',
key: 'cnxgux'
}]];
/**
* @component @name Stamp
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/stamp
* @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 Stamp = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "stamp"
}));
module.exports = Stamp;
//# sourceMappingURL=stamp.js.map