10 lines
329 B
TypeScript
10 lines
329 B
TypeScript
|
import { BadgeCheckIcon } from '@heroicons/react/solid'
|
||
|
|
||
|
export function FeaturedContractBadge() {
|
||
|
return (
|
||
|
<span className="inline-flex items-center gap-1 rounded-full bg-green-100 px-3 py-0.5 text-sm font-medium text-green-800">
|
||
|
<BadgeCheckIcon className="h-4 w-4" aria-hidden="true" /> Featured
|
||
|
</span>
|
||
|
)
|
||
|
}
|