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