lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.07 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M18 8L22 12L18 16', key: '1r0oui' }],
['path', { d: 'M2 12H22', key: '1m8cig' }],
];
/**
* @component @name MoveRight
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/move-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 MoveRight = (props) => <Icon {...props} name="MoveRight" iconNode={iconNode}/>;
export default MoveRight;