@nlabs/gothamjs
Version:
Platform
12 lines (11 loc) • 365 B
TypeScript
import type { GothamColor } from '../../utils/colorUtils.js';
import type { FC } from 'react';
export interface LabelProps {
readonly className?: string;
readonly color?: GothamColor;
readonly errorColor?: GothamColor;
readonly hasError?: boolean;
readonly label: string;
readonly name: string;
}
export declare const Label: FC<LabelProps>;