13 lines
262 B
TypeScript
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;
|