via-icons/dist/outline/EnvelopeIcon.d.ts

14 lines
292 B
TypeScript
Raw Permalink Normal View History

2024-07-28 23:23:49 -06:00
import * as React from 'react';
interface IconProps extends React.SVGAttributes<SVGElement> {
children?: never;
color?: string;
}
/**
*
*
* @usage
*
*/
export declare const EnvelopeIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
export {};