via-icons/dist/solid/CheckCircleIcon.d.ts

26 lines
546 B
TypeScript
Raw 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;
}
/**
2024-07-29 20:56:59 -06:00
* @name CheckCircleIcon
*
2024-07-30 00:01:45 -06:00
*
2024-07-29 20:56:59 -06:00
* @category outline
*
* @description
*
2024-07-28 23:23:49 -06:00
*
*
* @usage
*
2024-07-29 20:56:59 -06:00
*
* @accessibility
* Asegurarse de incluir un atributo `aria-label` o `aria-hidden="true"` si el ícono es decorativo.
*
* @returns {JSX.Element} Componente SVG.
2024-07-28 23:23:49 -06:00
*/
2024-07-30 00:01:45 -06:00
declare const CheckCircleIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
export { CheckCircleIcon };