Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sai6855 committed Jan 13, 2025
1 parent 005d0f4 commit 3b6b2a9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/mui-material/src/Input/inputClasses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,53 +6,53 @@ export interface InputClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if the component is a descendant of `FormControl`.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
formControl: string;
/** Styles applied to the root element if the component is focused. */
focused: string;
/** Styles applied to the root element if `disabled={true}`. */
disabled: string;
/** Styles applied to the root element if color secondary.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
colorSecondary: string;
/** Styles applied to the root element unless `disableUnderline={true}`. */
underline: string;
/** State class applied to the root element if `error={true}`. */
error: string;
/** Styles applied to the input element if `size="small"`.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
sizeSmall: string;
/** Styles applied to the root element if `multiline={true}`.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
multiline: string;
/** Styles applied to the root element if `fullWidth={true}`.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
fullWidth: string;
/** Styles applied to the input element. */
input: string;
/** Styles applied to the input element if `size="small"`.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
inputSizeSmall: string;
/** Styles applied to the input element if `multiline={true}`.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
inputMultiline: string;
/** Styles applied to the input element if `startAdornment` is provided.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
inputAdornedStart: string;
/** Styles applied to the input element if `endAdornment` is provided.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
inputAdornedEnd: string;
/** Styles applied to the input element if `type="search"`.
* @ignore TODO v7: remove this class as this class is not used anywhere.
* @ignore
*/
inputTypeSearch: string;
}
Expand Down

0 comments on commit 3b6b2a9

Please sign in to comment.