// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License
// that can be found in the LICENSE file.
/* Styles for FilledInput */
// Styles applied to the root element.
.ZuFilledInput-root {
}
// Styles applied to the root element if color secondary.
.ZuFilledInput-colorSecondary {
}
// Styles applied to the root element unless disableUnderline={true}.
.ZuFilledInput-underline {
}
// State class applied to the root element if the component is focused.
.ZuFilledInput-focused {
}
// State class applied to the root element if disabled={true}.
.ZuFilledInput-disabled {
}
// Styles applied to the root element if startAdornment is provided.
.ZuFilledInput-adornedStart {
}
// Styles applied to the root element if endAdornment is provided.
.ZuFilledInput-adornedEnd {
}
// State class applied to the root element if error={true}.
.ZuFilledInput-error {
}
// Styles applied to the input element if size="small".
.ZuFilledInput-sizeSmall {
}
// Styles applied to the root element if multiline={true}.
.ZuFilledInput-multiline {
}
// Styles applied to the root element if hiddenLabel={true}.
.ZuFilledInput-hiddenLabel {
}
// Styles applied to the input element.
.ZuFilledInput-input {
}
// Styles applied to the input element if size="small".
.ZuFilledInput-inputSizeSmall {
}
// Styles applied to the `input` if in .
.ZuFilledInput-inputHiddenLabel {
}
// Styles applied to the input element if multiline={true}.
.ZuFilledInput-inputMultiline {
}
// Styles applied to the input element if startAdornment is provided.
.ZuFilledInput-inputAdornedStart {
}
// Styles applied to the input element if endAdornment is provided.
.ZuFilledInput-inputAdornedEnd {
}
// Styles applied to the input element if type="search".
.ZuFilledInput-inputTypeSearch {
}