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: 'M8 3 4 7l4 4', key: '9rb6wj' }],
['path', { d: 'M4 7h16', key: '6tx8e3' }],
['path', { d: 'm16 21 4-4-4-4', key: 'siv7j2' }],
['path', { d: 'M20 17H4', key: 'h6l3hr' }],
];
/**
* @component @name ArrowLeftRight
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-left-right
* @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 ArrowLeftRight = (props) => (<Icon {...props} name="ArrowLeftRight" iconNode={iconNode}/>);
export default ArrowLeftRight;