lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.22 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '20', height: '14', x: '2', y: '7', rx: '2', ry: '2', key: 'eto64e' }],
['path', { d: 'M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16', key: 'zwj3tp' }],
];
/**
* @component @name Briefcase
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/briefcase
* @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 Briefcase = (props) => <Icon {...props} name="Briefcase" iconNode={iconNode}/>;
export default Briefcase;