28 lines
		
	
	
		
			591 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			591 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import * as React from 'react';
 | 
						|
import { StandardProps } from '..';
 | 
						|
import { FormLabelProps, FormLabelClassKey } from '../Form/FormLabel';
 | 
						|
 | 
						|
export interface InputLabelProps extends StandardProps<
 | 
						|
  FormLabelProps,
 | 
						|
  InputLabelClassKey
 | 
						|
> {
 | 
						|
  disableAnimation?: boolean;
 | 
						|
  disabled?: boolean;
 | 
						|
  error?: boolean;
 | 
						|
  focused?: boolean;
 | 
						|
  required?: boolean;
 | 
						|
  shrink?: boolean;
 | 
						|
}
 | 
						|
 | 
						|
export type InputLabelClassKey =
 | 
						|
  | FormLabelClassKey
 | 
						|
  | 'formControl'
 | 
						|
  | 'labelDense'
 | 
						|
  | 'shrink'
 | 
						|
  | 'animated'
 | 
						|
  ;
 | 
						|
 | 
						|
declare const InputLabel: React.ComponentType<InputLabelProps>;
 | 
						|
 | 
						|
export default InputLabel;
 |