lookingglass/hyperglass/ui/elements/card/footer.tsx
2021-12-19 22:57:00 -07:00

18 lines
404 B
TypeScript

import { Flex } from '@chakra-ui/react';
import type { FlexProps } from '@chakra-ui/react';
export const CardFooter = (props: FlexProps): JSX.Element => (
<Flex
p={4}
direction="column"
overflowX="hidden"
overflowY="hidden"
flexDirection="row"
borderTopWidth="1px"
roundedBottomLeft={4}
roundedBottomRight={4}
justifyContent="space-between"
{...props}
/>
);