lucide-solid
Version:
A Lucide icon library package for Solid applications
26 lines (25 loc) • 1.41 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'm10 18 3-3-3-3', key: '18f6ys' }],
['path', { d: 'M14 2v4a2 2 0 0 0 2 2h4', key: 'tnqrlb' }],
[
'path',
{
d: 'M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7',
key: '50q2rw',
},
],
];
/**
* @component @name FileSymlink
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/file-symlink
* @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 FileSymlink = (props) => (<Icon {...props} name="FileSymlink" iconNode={iconNode}/>);
export default FileSymlink;