via-icons/dist/outline/DevicePhoneMobileIcon.d.ts
2024-07-28 23:23:49 -06:00

14 lines
301 B
TypeScript

import * as React from 'react';
interface IconProps extends React.SVGAttributes<SVGElement> {
children?: never;
color?: string;
}
/**
*
*
* @usage
*
*/
export declare const DevicePhoneMobileIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
export {};