1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-04-18 05:48:27 +00:00
thatmattlove-hyperglass/hyperglass/ui/components/card/footer.tsx
2021-01-03 23:51:09 -07:00

18 lines
409 B
TypeScript

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