lucide-solid
Version:
A Lucide icon library package for Solid applications
20 lines (19 loc) • 1.26 kB
JSX
import Icon from '../Icon';
const iconNode = [
['path', { d: 'M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z', key: '1rqfz7' }],
['path', { d: 'M12 9v4', key: 'juzpu7' }],
['path', { d: 'M12 17h.01', key: 'p32p05' }],
];
/**
* @component @name FileWarning
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/file-warning
* @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 FileWarning = (props) => (<Icon {...props} name="FileWarning" iconNode={iconNode}/>);
export default FileWarning;