mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
17 lines
340 B
TypeScript
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}
|
|
/>
|
|
);
|