lucide-solid
Version:
A Lucide icon library package for Solid applications
23 lines (22 loc) • 1.54 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v18', key: '1oywqq' }],
['path', { d: 'M14 2v4a2 2 0 0 0 2 2h4', key: 'tnqrlb' }],
['circle', { cx: '10', cy: '20', r: '2', key: '1xzdoj' }],
['path', { d: 'M10 7V6', key: 'dljcrl' }],
['path', { d: 'M10 12v-1', key: 'v7bkov' }],
['path', { d: 'M10 18v-2', key: '1cjy8d' }],
];
/**
* @component @name FileArchive
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/file-archive
* @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 FileArchive = (props) => (<Icon {...props} name="FileArchive" iconNode={iconNode}/>);
export default FileArchive;