lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.15 kB
JSX
import Icon from '../Icon';
const iconNode = [
['rect', { width: '14', height: '20', x: '5', y: '2', rx: '2', ry: '2', key: '1yt0o3' }],
['path', { d: 'M12 18h.01', key: 'mhygvu' }],
];
/**
* @component @name Smartphone
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/smartphone
* @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 Smartphone = (props) => (<Icon {...props} name="Smartphone" iconNode={iconNode}/>);
export default Smartphone;