lucide-solid
Version:
A Lucide icon library package for Solid applications
25 lines (24 loc) • 1.34 kB
JSX
import Icon from '../Icon';
const iconNode = [
['circle', { cx: '12', cy: '5', r: '3', key: 'rqqgnr' }],
[
'path',
{
d: 'M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z',
key: '56o5sh',
},
],
];
/**
* @component @name Weight
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/weight
* @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 Weight = (props) => <Icon {...props} name="Weight" iconNode={iconNode}/>;
export default Weight;