@ntragas/pouncejstest
Version:
A collection of UI components from Panther labs
9 lines (8 loc) • 377 B
TypeScript
import React from 'react';
import { BoxProps, NativeAttributes } from '../../Box';
export declare type InputLabelProps = NativeAttributes<'label'> & Pick<BoxProps, 'visuallyHidden' | 'left'> & {
/** Whether the label should be raised up or not. Defaults to `true` */
raised?: boolean;
};
declare const InputLabel: React.FC<InputLabelProps>;
export default InputLabel;