import * as React from 'react'; interface IconProps extends React.SVGAttributes { children?: never; color?: string; } /** * @name CheckCircleIcon * * @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. */ export const CheckCircleIcon = React.forwardRef( ({ color = 'currentColor', ...props }, forwardedRef) => { return ( ); } ); CheckCircleIcon.displayName = 'CheckCircleIcon';