mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-22 21:36:00 +00:00
8 lines
238 B
TypeScript
8 lines
238 B
TypeScript
export function plusExpandIcon(isExpanded): string {
|
|
return isExpanded ? 'icon minus-box' : 'icon plus-box';
|
|
}
|
|
|
|
export function chevronExpandIcon(isExpanded): string {
|
|
return isExpanded ? 'icon chevron-down' : 'icon chevron-right';
|
|
}
|