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