via-icons/dist/solid/EnvelopeIcon.d.ts
2024-07-30 00:13:41 -06:00

26 lines
536 B
TypeScript

import * as React from 'react';
interface IconProps extends React.SVGAttributes<SVGElement> {
children?: never;
color?: string;
}
/**
* @name EnvelopeIcon
*
* @category outline
*
* @description
*
*
*
* @usage
*
*
* @accessibility
* Asegurarse de incluir un atributo `aria-label` o `aria-hidden="true"` si el ícono es decorativo.
*
* @returns {JSX.Element} Componente SVG.
*/
declare const EnvelopeIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
export { EnvelopeIcon };