apphouse
Version:
Component library for React that uses observable state management and theme-able components.
19 lines (18 loc) • 487 B
TypeScript
import { ReactNode } from 'react';
import { InputLabelStyles } from './input.styles.interface';
import React from 'react';
import { InputStyles } from '../../styles/defaults/themes.interface';
/**
* Label for the input component
*/
export declare const InputLabel: React.FC<{
id: string;
label: ReactNode;
required?: boolean;
/**
* Variant of the input
* @default 'default'
*/
variant?: keyof InputStyles;
styleOverwrites?: InputLabelStyles;
}>;