import * as React from 'react'; interface IconProps extends React.SVGAttributes { children?: never; color?: string; } /** * * * @usage * */ export const DevicePhoneMobileIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( ); } ); DevicePhoneMobileIcon.displayName = 'DevicePhoneMobileIcon';