lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.24 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M3.5 13h6', key: 'p1my2r' }],
['path', { d: 'm2 16 4.5-9 4.5 9', key: 'ndf0b3' }],
['path', { d: 'M18 16V7', key: 'ty0viw' }],
['path', { d: 'm14 11 4-4 4 4', key: '1pu57t' }],
];
/**
* @component @name AArrowUp
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/a-arrow-up
* @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 AArrowUp = (props) => <Icon {...props} name="AArrowUp" iconNode={iconNode}/>;
export default AArrowUp;