lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.19 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '16', height: '20', x: '4', y: '2', rx: '2', ry: '2', key: '76otgf' }],
['line', { x1: '12', x2: '12.01', y1: '18', y2: '18', key: '1dp563' }],
];
/**
* @component @name Tablet
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/tablet
* @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 Tablet = (props) => <Icon {...props} name="Tablet" iconNode={iconNode}/>;
export default Tablet;