MED-197: add tooltip to default package feature

This commit is contained in:
Danel Kungla
2025-10-08 18:02:05 +03:00
parent 8386e541cb
commit db9d94a59d
6 changed files with 41 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
'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>
);
};