lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.34 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'm3 8 4-4 4 4', key: '11wl7u' }],
['path', { d: 'M7 4v16', key: '1glfcx' }],
['path', { d: 'M11 12h10', key: '1438ji' }],
['path', { d: 'M11 16h7', key: 'uosisv' }],
['path', { d: 'M11 20h4', key: '1krc32' }],
];
/**
* @component @name ArrowUpWideNarrow
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-up-wide-narrow
* @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 ArrowUpWideNarrow = (props) => (<Icon {...props} name="ArrowUpWideNarrow" iconNode={iconNode}/>);
export default ArrowUpWideNarrow;