// 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 Chip */
// Styles applied to the root element.
.ZuChip-root {
}
// Styles applied to the root element if size="small".
.ZuChip-sizeSmall {
}
// Styles applied to the root element if size="medium".
.ZuChip-sizeMedium {
}
// Styles applied to the root element if color="error".
.ZuChip-colorError {
}
// Styles applied to the root element if color="info".
.ZuChip-colorInfo {
}
// Styles applied to the root element if color="primary".
.ZuChip-colorPrimary {
}
// Styles applied to the root element if color="secondary".
.ZuChip-colorSecondary {
}
// Styles applied to the root element if color="success".
.ZuChip-colorSuccess {
}
// Styles applied to the root element if color="warning".
.ZuChip-colorWarning {
}
// State class applied to the root element if disabled={true}.
.ZuChip-disabled {
}
// Styles applied to the root element if onClick is defined or clickable={true}.
.ZuChip-clickable {
}
// Styles applied to the root element if onClick and color="primary" is defined or clickable={true}.
.ZuChip-clickableColorPrimary {
}
// Styles applied to the root element if onClick and color="secondary" is defined or clickable={true}.
.ZuChip-clickableColorSecondary {
}
// Styles applied to the root element if onDelete is defined.
.ZuChip-deletable {
}
// Styles applied to the root element if onDelete and color="primary" is defined.
.ZuChip-deletableColorPrimary {
}
// Styles applied to the root element if onDelete and color="secondary" is defined.
.ZuChip-deletableColorSecondary {
}
// Styles applied to the root element if variant="outlined".
.ZuChip-outlined {
}
// Styles applied to the root element if variant="filled".
.ZuChip-filled {
}
// Styles applied to the root element if variant="outlined" and color="primary".
.ZuChip-outlinedPrimary {
}
// Styles applied to the root element if variant="outlined" and color="secondary".
.ZuChip-outlinedSecondary {
}
// Styles applied to the root element if variant="filled" and color="primary".
.ZuChip-filledPrimary {
}
// Styles applied to the root element if variant="filled" and color="secondary".
.ZuChip-filledSecondary {
}
// Styles applied to the avatar element.
.ZuChip-avatar {
}
// Styles applied to the avatar element if size="small".
.ZuChip-avatarSmall {
}
// Styles applied to the avatar element if size="medium".
.ZuChip-avatarMedium {
}
// Styles applied to the avatar element if color="primary".
.ZuChip-avatarColorPrimary {
}
// Styles applied to the avatar element if color="secondary".
.ZuChip-avatarColorSecondary {
}
// Styles applied to the icon element.
.ZuChip-icon {
}
// Styles applied to the icon element if size="small".
.ZuChip-iconSmall {
}
// Styles applied to the icon element if size="medium".
.ZuChip-iconMedium {
}
// Styles applied to the icon element if color="primary".
.ZuChip-iconColorPrimary {
}
// Styles applied to the icon element if color="secondary".
.ZuChip-iconColorSecondary {
}
// Styles applied to the label `span` element.
.ZuChip-label {
}
// Styles applied to the label `span` element if size="small".
.ZuChip-labelSmall {
}
// Styles applied to the label `span` element if size="medium".
.ZuChip-labelMedium {
}
// Styles applied to the deleteIcon element.
.ZuChip-deleteIcon {
}
// Styles applied to the deleteIcon element if size="small".
.ZuChip-deleteIconSmall {
}
// Styles applied to the deleteIcon element if size="medium".
.ZuChip-deleteIconMedium {
}
// Styles applied to the deleteIcon element if color="primary" and variant="filled".
.ZuChip-deleteIconColorPrimary {
}
// Styles applied to the deleteIcon element if color="secondary" and variant="filled".
.ZuChip-deleteIconColorSecondary {
}
// Styles applied to the deleteIcon element if color="primary" and variant="outlined".
.ZuChip-deleteIconOutlinedColorPrimary {
}
// Styles applied to the deleteIcon element if color="secondary" and variant="outlined".
.ZuChip-deleteIconOutlinedColorSecondary {
}
// Styles applied to the deleteIcon element if color="primary" and variant="filled".
.ZuChip-deleteIconFilledColorPrimary {
}
// Styles applied to the deleteIcon element if color="secondary" and variant="filled".
.ZuChip-deleteIconFilledColorSecondary {
}
// State class applied to the root element if keyboard focused.
.ZuChip-focusVisible {
}