Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99961986
Input.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Jan 27, 12:00
Size
946 B
Mime Type
text/x-java
Expires
Wed, Jan 29, 12:00 (2 d)
Engine
blob
Format
Raw Data
Handle
23806925
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
Input.d.ts
View Options
import { SxProps } from '@mui/system';
import { InternalStandardProps as StandardProps, Theme } from '..';
import { InputBaseProps } from '../InputBase';
import { InputClasses } from './inputClasses';
export interface InputProps extends StandardProps<InputBaseProps> {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<InputClasses>;
/**
* If `true`, the `input` will not have an underline.
*/
disableUnderline?: boolean;
/**
* The system prop that allows defining system overrides as well as additional CSS styles.
*/
sx?: SxProps<Theme>;
}
/**
*
* Demos:
*
* - [Text Field](https://mui.com/material-ui/react-text-field/)
*
* API:
*
* - [Input API](https://mui.com/material-ui/api/input/)
* - inherits [InputBase API](https://mui.com/material-ui/api/input-base/)
*/
declare const Input: ((props: InputProps) => JSX.Element) & { muiName: string };
export default Input;
Event Timeline
Log In to Comment