lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.48 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '20', height: '8', x: '2', y: '2', rx: '2', ry: '2', key: 'ngkwjq' }],
['rect', { width: '20', height: '8', x: '2', y: '14', rx: '2', ry: '2', key: 'iecqi9' }],
['line', { x1: '6', x2: '6.01', y1: '6', y2: '6', key: '16zg32' }],
['line', { x1: '6', x2: '6.01', y1: '18', y2: '18', key: 'nzw8ys' }],
];
/**
* @component @name Server
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/server
* @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 Server = (props) => <Icon {...props} name="Server" iconNode={iconNode}/>;
export default Server;