lucide-solid
Version:
A Lucide icon library package for Solid applications.
51 lines (45 loc) • 2.06 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: 'M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978',
key: '1n3hpd'
}], ['path', {
d: 'M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978',
key: 'rfe1zi'
}], ['path', {
d: 'M18 9h1.5a1 1 0 0 0 0-5H18',
key: '7xy6bh'
}], ['path', {
d: 'M4 22h16',
key: '57wxv0'
}], ['path', {
d: 'M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z',
key: '1mhfuq'
}], ['path', {
d: 'M6 9H4.5a1 1 0 0 1 0-5H6',
key: 'tex48p'
}]];
/**
* @component @name Trophy
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/trophy
* @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 Trophy = props => web.createComponent(Icon, web.mergeProps(props, {
iconNode: iconNode,
name: "trophy"
}));
module.exports = Trophy;
//# sourceMappingURL=trophy.js.map