UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 356 B
import React from 'react'; import { FlexProps } from '@mantine/core'; import { TextProps } from "../text"; export type ErrorLabelProps = { label: string; withIcon?: boolean; textProps?: Partial<TextProps>; } & FlexProps; export declare const ErrorLabel: ({ label, withIcon, textProps, ...rest }: ErrorLabelProps) => React.JSX.Element;