import * as React from "react"; import { InfoBoxProps } from "../../infobox/components/InfoBox"; import { InfoBoxInline } from "../../infobox"; import { SpacingBox } from "../../styleUtils/modifiers"; type FormMessageProps = Omit; const FormMessage = ({ children, ...other }: FormMessageProps) => ( ); export default FormMessage;