1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/hyperglass/ui/components/Card/CardFooter.js

20 lines
400 B
JavaScript
Raw Normal View History

import * as React from "react";
import { Flex } from "@chakra-ui/core";
export const CardFooter = ({ children, ...props }) => (
<Flex
p={4}
roundedBottomLeft={4}
roundedBottomRight={4}
direction="column"
borderTopWidth="1px"
overflowX="hidden"
overflowY="hidden"
flexDirection="row"
justifyContent="space-between"
{...props}
>
{children}
</Flex>
);