mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
19 lines
386 B
TypeScript
19 lines
386 B
TypeScript
import { Flex } from '@chakra-ui/react';
|
|
|
|
import type { ICardFooter } from './types';
|
|
|
|
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}
|
|
/>
|
|
);
|