This commit is contained in:
2026-02-16 19:34:35 +00:00
commit 9ab0940ca4
784 changed files with 41710 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import { cn } from 'helpers/cn';
type CheckMarkProps = {
className?: string | boolean | undefined;
};
export const CheckMark = ({ className }: CheckMarkProps) => {
return (
<div className={cn('inline-block h-8 w-8 rounded-full bg-[#10b981]', className)}>
<svg className="m-auto mt-2 h-4 w-4 text-white" focusable="false" aria-hidden="true" viewBox="0 0 24 24">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth="1.5"
stroke="currentColor"
aria-hidden="true"
data-slot="icon"
>
<path strokeLinecap="round" strokeLinejoin="round" d="m4.5 12.75 6 6 9-13.5"></path>
</svg>
</svg>
</div>
);
};