lookingglass/hyperglass/ui/components/card/header.tsx
2021-12-17 21:08:45 -07:00

22 lines
546 B
TypeScript

import { Flex, Text } from '@chakra-ui/react';
import { useColorValue } from '~/context';
import type { TCardHeader } from './types';
export const CardHeader = (props: TCardHeader): JSX.Element => {
const { children, ...rest } = props;
const bg = useColorValue('blackAlpha.50', 'whiteAlpha.100');
return (
<Flex
p={4}
bg={bg}
direction="column"
roundedTopLeft={4}
roundedTopRight={4}
borderBottomWidth="1px"
{...rest}
>
<Text fontWeight="bold">{children}</Text>
</Flex>
);
};