PromucFlow_constructor/app/client/src/IDE/Components/HeaderTitle.tsx
2024-04-26 13:32:34 +05:30

18 lines
429 B
TypeScript

import React from "react";
import { Flex, Text } from "design-system";
/**
* Handy little styled component that can be used to render the title in the IDEHeader component
* **/
const HeaderTitle = ({ title }: { title: string }) => {
return (
<Flex alignItems="center" height="100%" justifyContent="center">
<Text isBold kind="body-m">
{title}
</Text>
</Flex>
);
};
export default HeaderTitle;