17 lines
380 B
TypeScript
17 lines
380 B
TypeScript
import { Flex } from "@chakra-ui/react";
|
|
import { ReactNode } from "react";
|
|
|
|
export type ParameterLayoutFooterProps = {
|
|
children?: ReactNode;
|
|
}
|
|
|
|
export const ParameterLayoutFooter = ({children}:ParameterLayoutFooterProps) => {
|
|
return <Flex
|
|
width="full"
|
|
paddingY="15px"
|
|
paddingX="25px"
|
|
minHeight="10px">
|
|
{children}
|
|
</Flex>
|
|
}
|