mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-19 16:06:02 +01:00
14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
|
|
import { Box, Text } from "@chakra-ui/react";
|
||
|
|
|
||
|
|
const Header: React.FC<{ title: string }> = ({ title }) => {
|
||
|
|
return (
|
||
|
|
<Box p={3} textAlign="center" borderTopLeftRadius="md" borderTopRightRadius="md" bg="#25262B">
|
||
|
|
<Text fontSize={24} textTransform="uppercase" fontWeight={300} fontFamily="Poppins">
|
||
|
|
{title}
|
||
|
|
</Text>
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Header;
|