lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.13 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M5 9v6', key: '158jrl' }],
['path', { d: 'M9 9h3V5l7 7-7 7v-4H9V9z', key: '1sg2xn' }],
];
/**
* @component @name ArrowBigRightDash
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-big-right-dash
* @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 ArrowBigRightDash = (props) => (<Icon {...props} name="ArrowBigRightDash" iconNode={iconNode}/>);
export default ArrowBigRightDash;