mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-19 16:06:02 +01:00
22 lines
453 B
TypeScript
22 lines
453 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"
|
|
height="60px"
|
|
width="sm"
|
|
>
|
|
<Text fontSize={24} textTransform="uppercase" fontWeight={600} fontFamily="Nunito">
|
|
{title}
|
|
</Text>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default Header;
|