lucide-solid
Version:
A Lucide icon library package for Solid applications
21 lines (20 loc) • 1.29 kB
JSX
import Icon from '../Icon';
const iconNode = [
['circle', { cx: '7', cy: '7', r: '5', key: 'x29byf' }],
['circle', { cx: '17', cy: '17', r: '5', key: '1op1d2' }],
['path', { d: 'M12 17h10', key: 'ls21zv' }],
['path', { d: 'm3.46 10.54 7.08-7.08', key: '1rehiu' }],
];
/**
* @component @name Tablets
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/tablets
* @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 Tablets = (props) => <Icon {...props} name="Tablets" iconNode={iconNode}/>;
export default Tablets;