Files
AgentGPT/src/components/Badge.tsx
Asim Shrestha d720feb63d 🚀 Update input fields
2023-04-07 15:38:16 -07:00

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;