lucide-solid
Version:
A Lucide icon library package for Solid applications
19 lines (18 loc) • 1.23 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.667 8 10 12h4l-2.667 4', key: 'h9lk2d' }],
];
/**
* @component @name SmartphoneCharging
* @description Lucide SVG icon component, renders SVG Element with children.
*
* @preview  - https://lucide.dev/icons/smartphone-charging
* @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 SmartphoneCharging = (props) => (<Icon {...props} name="SmartphoneCharging" iconNode={iconNode}/>);
export default SmartphoneCharging;