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