refactor: agent config refactor

This commit is contained in:
zhaoying
2026-01-16 15:48:02 +08:00
parent a6a18b7304
commit c2c2b306a2
18 changed files with 501 additions and 443 deletions

View File

@@ -3,18 +3,21 @@ import RbCard from '@/components/RbCard/Card'
interface CardProps {
title?: string | ReactNode;
subTitle?: string | ReactNode;
children: ReactNode;
extra?: ReactNode;
}
const Card: FC<CardProps> = ({
title,
subTitle,
children,
extra,
}) => {
return (
<RbCard
title={title}
subTitle={subTitle}
extra={extra}
headerType="borderL"
headerClassName="rb:before:bg-[#155EEF]! rb:before:h-[19px]"