-
-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fixed copied text UI issue (#2147)
- Loading branch information
1 parent
1feddbd
commit 8f8ae07
Showing
2 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export default function IconCheck({ className }: any) { | ||
return ( | ||
<svg | ||
className={className || 'inline-block'} | ||
fill='currentColor' | ||
viewBox='0 0 22 22' | ||
|
||
> | ||
<circle cx='12' cy='12' r='10' className='text-gray-500' /> | ||
<path | ||
d='M7 12l3 3 7-7' | ||
fill='none' | ||
stroke='#252f3f' | ||
strokeWidth='2' | ||
strokeLinecap='round' | ||
strokeLinejoin='round' | ||
/> | ||
</svg> | ||
); | ||
} | ||
|