sp.wack 794eedf503
feat(frontend): Memory UI (#8592)
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>
2025-07-08 16:24:07 +00:00

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>
);
}