mirror of
https://github.com/aljazceru/AgentGPT.git
synced 2025-12-17 22:14:23 +01:00
16 lines
299 B
TypeScript
16 lines
299 B
TypeScript
import React from "react";
|
|
|
|
interface BadgeProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
const Badge = ({ children }: BadgeProps) => {
|
|
return (
|
|
<div className="text-md h-max rounded-full bg-[#1E88E5] px-3 py-1 font-semibold text-gray-100">
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Badge;
|