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

20 lines
421 B
TypeScript
Raw Normal View History

2020-10-07 09:41:58 -07:00
import * as React from 'react';
import { Flex } from '@chakra-ui/core';
import type { FlexProps } from '@chakra-ui/core';
export const CardFooter = (props: FlexProps) => (
<Flex
p={4}
direction="column"
overflowX="hidden"
overflowY="hidden"
flexDirection="row"
borderTopWidth="1px"
roundedBottomLeft={4}
roundedBottomRight={4}
justifyContent="space-between"
{...props}
/>
);