@porsche-design-system/components-react
Version:
Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.
15 lines (14 loc) • 410 B
TypeScript
import type { FC } from 'react';
type FormElement = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
type LegacyLabelProps = {
hasLabel: boolean;
hasDescription: boolean;
formElement?: FormElement;
host: HTMLElement;
label: string;
description?: string;
isLoading?: boolean;
isDisabled?: boolean;
};
export declare const LegacyLabel: FC<LegacyLabelProps>;
export {};