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

23 lines
545 B
TypeScript

import { Flex } from '@chakra-ui/react';
import { useColorValue } from '~/context';
import type { TCardBody } from './types';
export const CardBody = (props: TCardBody): JSX.Element => {
const { onClick, ...rest } = props;
const bg = useColorValue('white', 'dark.500');
const color = useColorValue('dark.500', 'white');
return (
<Flex
bg={bg}
w="100%"
rounded="md"
color={color}
onClick={onClick}
overflow="hidden"
borderWidth="1px"
direction="column"
{...rest}
/>
);
};