2023-05-31 16:08:43 +00:00
|
|
|
import { Box, BoxProps } from "@saleor/macaw-ui/next";
|
|
|
|
import { defaultPadding } from "./ui-defaults";
|
|
|
|
|
|
|
|
export const BoxFooter = (props: BoxProps) => {
|
|
|
|
return (
|
|
|
|
<Box
|
|
|
|
borderTopStyle="solid"
|
|
|
|
borderWidth={1}
|
|
|
|
borderColor="neutralDefault"
|
|
|
|
padding={defaultPadding}
|
|
|
|
display="flex"
|
2023-06-12 11:18:31 +00:00
|
|
|
gap={defaultPadding}
|
2023-05-31 16:08:43 +00:00
|
|
|
flexDirection="row"
|
|
|
|
justifyContent="flex-end"
|
|
|
|
{...props}
|
|
|
|
>
|
|
|
|
{props.children}
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
};
|