1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

21 lines
503 B
JavaScript
Raw Normal View History

2020-10-07 09:41:58 -07:00
import * as React from 'react';
import { Flex, Text, useColorMode } from '@chakra-ui/core';
2020-10-07 09:41:58 -07:00
const bg = { light: 'blackAlpha.50', dark: 'whiteAlpha.100' };
export const CardHeader = ({ children, ...props }) => {
const { colorMode } = useColorMode();
return (
<Flex
bg={bg[colorMode]}
p={4}
direction="column"
roundedTopLeft={4}
roundedTopRight={4}
borderBottomWidth="1px"
2020-10-07 09:41:58 -07:00
{...props}>
<Text fontWeight="bold">{children}</Text>
</Flex>
);
};