@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) • 329 B
TypeScript
import type { FC } from 'react';
type LabelProps = {
hasLabel: boolean;
hasDescription: boolean;
htmlFor: string;
isRequired?: boolean;
host: HTMLElement;
label: string;
description?: string;
isLoading?: boolean;
isDisabled?: boolean;
};
export declare const Label: FC<LabelProps>;
export {};