1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2020-11-03 01:51:41 -07:00

17 lines
340 B
TypeScript

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