Files
medreport_mrb2b/app/home/(user)/_components/check-with-background.tsx
2025-10-08 18:02:05 +03:00

12 lines
238 B
TypeScript

'use client';
import { Check } from 'lucide-react';
export const CheckWithBackground = () => {
return (
<div className="bg-primary w-min rounded-full p-1 text-white">
<Check className="size-3 stroke-2" />
</div>
);
};