chore: bump icons with new design source (#9529)

This commit is contained in:
CatsJuice
2025-01-06 03:10:03 +00:00
parent c22804766d
commit 09937a8e4d
37 changed files with 80 additions and 80 deletions

View File

@@ -1,6 +1,6 @@
import { ShadowlessElement } from '@blocksuite/block-std';
import { SignalWatcher, WithDisposable } from '@blocksuite/global/utils';
import { CheckBoxCkeckSolidIcon, CheckBoxUnIcon } from '@blocksuite/icons/lit';
import { CheckBoxCheckSolidIcon, CheckBoxUnIcon } from '@blocksuite/icons/lit';
import { computed, type ReadonlySignal } from '@preact/signals-core';
import { css, html } from 'lit';
import { property } from 'lit/decorators.js';
@@ -74,7 +74,7 @@ export class RowSelectCheckbox extends SignalWatcher(
return html`
<div class="${classString}">
${this.isSelected$.value
? CheckBoxCkeckSolidIcon({ style: `color:#1E96EB` })
? CheckBoxCheckSolidIcon({ style: `color:#1E96EB` })
: CheckBoxUnIcon()}
</div>
`;