12 lines
238 B
TypeScript
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>
|
|
);
|
|
};
|