lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.27 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '14', height: '20', x: '5', y: '2', rx: '2', key: '1uq1d7' }],
['path', { d: 'M15 14h.01', key: '1kp3bh' }],
['path', { d: 'M9 6h6', key: 'dgm16u' }],
['path', { d: 'M9 10h6', key: '9gxzsh' }],
];
/**
* @component @name PcCase
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/pc-case
* @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 PcCase = (props) => <Icon {...props} name="PcCase" iconNode={iconNode}/>;
export default PcCase;