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: 'M19 15V9', key: '1hci5f' }],
['path', { d: 'M15 15h-3v4l-7-7 7-7v4h3v6z', key: '16tjna' }],
];
/**
* @component @name ArrowBigLeftDash
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/arrow-big-left-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 ArrowBigLeftDash = (props) => (<Icon {...props} name="ArrowBigLeftDash" iconNode={iconNode}/>);
export default ArrowBigLeftDash;