import React, { type HTMLAttributes } from 'react'
import classnames from 'classnames'
import { type OverrideClassName } from '~components/types/OverrideClassName'
import styles from './FooterRoot.module.css'
export type FooterRootProps = OverrideClassName>
export const FooterRoot = ({
children,
classNameOverride,
...restProps
}: FooterRootProps): JSX.Element => (
)
FooterRoot.displayName = 'Workflow.FooterRoot'