@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 356 B
TypeScript
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;