Format bar: Use icons from #10242 (#10252)

This commit is contained in:
Kaz Wesley 2024-06-12 06:03:53 -07:00 committed by GitHub
parent 87864bf564
commit 8423f31884
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -9,12 +9,12 @@ const blockType = defineModel<BlockType>({ required: true })
const TODO: Icon = 'text'
const blockTypeIcon: Record<keyof typeof blockTypeToBlockName, Icon> = {
paragraph: 'text',
bullet: TODO,
bullet: 'bullet-list',
code: TODO,
h1: TODO,
h2: TODO,
h3: TODO,
number: TODO,
number: 'numbered-list',
quote: TODO,
}
const blockTypesOrdered: BlockType[] = [

View File

@ -77,7 +77,7 @@ const close = () => (menuOpen.value = false)
@click="close"
/>
<SvgButton
:name="TODO"
name="remove-textstyle"
label="Clear Formatting"
@click.stop="clearFormatting"
@click="close"