lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.26 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'm16 3 4 4-4 4', key: '1x1c3m' }],
['path', { d: 'M20 7H4', key: 'zbl0bi' }],
['path', { d: 'm8 21-4-4 4-4', key: 'h9nckh' }],
['path', { d: 'M4 17h16', key: 'g4d7ey' }],
];
/**
* @component @name ArrowRightLeft
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-right-left
* @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 ArrowRightLeft = (props) => (<Icon {...props} name="ArrowRightLeft" iconNode={iconNode}/>);
export default ArrowRightLeft;