// 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 NativeSelect */
// Styles applied to the root element.
.ZuNativeSelect-root {
}
// Styles applied to the select component `select` class.
.ZuNativeSelect-select {
}
// Styles applied to the select component if multiple={true}.
.ZuNativeSelect-multiple {
}
// Styles applied to the select component if variant="filled".
.ZuNativeSelect-filled {
}
// Styles applied to the select component if variant="outlined".
.ZuNativeSelect-outlined {
}
// Styles applied to the select component if variant="standard".
.ZuNativeSelect-standard {
}
// State class applied to the select component `disabled` class.
.ZuNativeSelect-disabled {
}
// Styles applied to the icon component.
.ZuNativeSelect-icon {
}
// Styles applied to the icon component if the popup is open.
.ZuNativeSelect-iconOpen {
}
// Styles applied to the icon component if variant="filled".
.ZuNativeSelect-iconFilled {
}
// Styles applied to the icon component if variant="outlined".
.ZuNativeSelect-iconOutlined {
}
// Styles applied to the icon component if variant="standard".
.ZuNativeSelect-iconStandard {
}
// Styles applied to the underlying native input component.
.ZuNativeSelect-nativeInput {
}
// State class applied to the select component `error` class.
.ZuNativeSelect-error {
}