lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.4 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 2v3', key: '1vg67v' }],
['path', { d: 'M14 2v4a2 2 0 0 0 2 2h4', key: 'tnqrlb' }],
['path', { d: 'm7 10-3 2H2v4h2l3 2Z', key: 'fiq8l4' }],
['path', { d: 'M11 11a5 5 0 0 1 0 6', key: '193qb2' }],
];
/**
* @component @name FileVolume
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/file-volume
* @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 FileVolume = (props) => (<Icon {...props} name="FileVolume" iconNode={iconNode}/>);
export default FileVolume;