mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: Engel Nyst <engel.nyst@gmail.com> Co-authored-by: tofarr <tofarr@gmail.com> Co-authored-by: Engel Nyst <enyst@users.noreply.github.com> Co-authored-by: Robert Brennan <accounts@rbren.io> Co-authored-by: Rohit Malhotra <rohitvinodmalhotra@gmail.com>
22 lines
406 B
TypeScript
22 lines
406 B
TypeScript
import { cn } from "#/utils/utils";
|
|
|
|
interface BrandBadgeProps {
|
|
className?: string;
|
|
}
|
|
|
|
export function BrandBadge({
|
|
children,
|
|
className,
|
|
}: React.PropsWithChildren<BrandBadgeProps>) {
|
|
return (
|
|
<span
|
|
className={cn(
|
|
"text-sm leading-4 text-[#0D0F11] font-semibold tracking-tighter bg-primary p-1 rounded-full",
|
|
className,
|
|
)}
|
|
>
|
|
{children}
|
|
</span>
|
|
);
|
|
}
|