import React, {FC, PropsWithChildren} from "react"; import classNames from "classnames"; export type WithLabelsProps = { bottom?: string, centered?: boolean, fullWidth?: boolean } export const WithLabels: FC = ({children, bottom, centered, fullWidth = true }) => { return
{children} {bottom &&
{bottom}
}
}