The Heroicons check circle icon visually represents a completed task or successful status, commonly used to indicate confirmation or approval in user interfaces.
Common uses
- Success message confirmation
- Task completion indicator
- Form submission success
Use it in React
Install
npm i @heroicons/reactImport & render
import { CheckCircleIcon } from '@heroicons/react/24/outline';
<CheckCircleIcon className="size-6" />Styles
Heroicons ships this icon in 4 styles — each its own import:
24/outline
<CheckCircleIcon className="size-6" />24/solid
<CheckCircleIcon className="size-6" />20/solid
<CheckCircleIcon className="size-6" />16/solid
<CheckCircleIcon className="size-6" />Details
- Library
- Heroicons (324 icons)
- License
- MIT
- viewBox
0 0 24 24- Keywords
- checkcirclesuccess iconcompleted iconapproved iconconfirmation icon
FAQ
- What does the check circle icon signify?
- It signifies a successful action, completion, or confirmation. It's a positive affirmation in UI design.
- How do I use this icon in React?
- Import it from Heroicons and use it as a component: `import { CheckCircleIcon } from '@heroicons/react/24/outline'`. Then render `<CheckCircleIcon className="h-6 w-6 text-green-500" />`.
- What is the license for this icon?
- The Heroicons library, including the check circle icon, is available under the MIT license.
Related icons
The same idea in other libraries, and near matches in Heroicons.
Looking for something else? Search Heroicons and 4 more libraries by description →
The search behind these pages runs as a Claude Code skill. What skills are and how I ship them →