import * as React from "react"; import { Icon, Label, Box } from "./index"; import { CommonStyleProps } from "./system/unions"; export type ErrorLabelProps = CommonStyleProps & { hasError?: boolean; }; export const ErrorLabel = ({ hasError, children, ...props }: ErrorLabelProps & React.HTMLAttributes) => ( ); ErrorLabel.displayName = "ErrorLabel";