'use client' // Third-party Imports import classnames from 'classnames' import type { CSSObject } from '@emotion/styled' // Type Imports import type { ChildrenType } from '@core/types' // Util Imports import { verticalLayoutClasses } from '@layouts/utils/layoutClasses' // Styled Component Imports import StyledFooter from '@layouts/styles/vertical/StyledFooter' type Props = ChildrenType & { overrideStyles?: CSSObject } const Footer = (props: Props) => { // Props const { children, overrideStyles } = props return (
{children}
) } export default Footer