lucide-solid
Version:
A Lucide icon library package for Solid applications
22 lines (21 loc) • 1.5 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4', key: '1pf5j1' }],
['path', { d: 'M14 2v4a2 2 0 0 0 2 2h4', key: 'tnqrlb' }],
['rect', { width: '4', height: '6', x: '2', y: '12', rx: '2', key: 'jm304g' }],
['path', { d: 'M10 12h2v6', key: '12zw74' }],
['path', { d: 'M10 18h4', key: '1ulq68' }],
];
/**
* @component @name FileDigit
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/file-digit
* @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 FileDigit = (props) => <Icon {...props} name="FileDigit" iconNode={iconNode}/>;
export default FileDigit;