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