Files
gpustack-ui/src/pages/llmodels/components/title-wrapper.tsx
T
2025-10-17 10:15:55 +08:00

13 lines
262 B
TypeScript

import React from 'react';
import '../style/title-wrapper.less';
const TitleWrapper: React.FC<any> = ({ children, style }) => {
return (
<h3 className="h3" style={{ height: 50, ...style }}>
{children}
</h3>
);
};
export default TitleWrapper;