import { ReactNode } from 'react'; import { Box } from './Box'; export interface FooterSectionProps { children: ReactNode; border?: boolean; } export const FooterSection = ({ children, border = true }: FooterSectionProps) => { return ( {children} ); };