import React from "react"; import { theme, css } from "../theme"; const NAME = "ErrorMessage"; const ErrorMessageCSS = css({ color: theme.colors.error, fontFamily: theme.fonts.meta, fontSize: theme.fontSizes["075"], fontWeight: theme.fontWeights.light, lineHeight: 1.33, marginBlock: 0, }); interface ErrorMessageProps extends React.ComponentPropsWithRef<"p"> { /** Allows any React node as children to allow for formatted text and links */ children?: React.ReactNode; /** Id is used to associate the error message with the `aria-describedby` attribute of another element */ id?: string; } export const ErrorMessage = React.forwardRef< HTMLParagraphElement, ErrorMessageProps >(({ children, ...rest }, ref) => { return (
{children}
); }); ErrorMessage.displayName = NAME; export type { ErrorMessageProps };