|
|
@@ -20,7 +20,7 @@ const TextFormatToolsToggler = (props: TogglarProps): JSX.Element => {
|
|
|
className="btn btn-toolbar-button"
|
|
|
onClick={onClick}
|
|
|
>
|
|
|
- <span className="material-icons fs-5">text_increase</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">match_case</span>
|
|
|
</button>
|
|
|
);
|
|
|
};
|
|
|
@@ -39,31 +39,31 @@ export const TextFormatTools = (): JSX.Element => {
|
|
|
<Collapse isOpen={isOpen} horizontal>
|
|
|
<div className="d-flex px-1 gap-1" style={{ width: '220px' }}>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">format_bold</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">format_bold</span>
|
|
|
</button>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">format_italic</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">format_italic</span>
|
|
|
</button>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">format_strikethrough</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">format_strikethrough</span>
|
|
|
</button>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">block</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">block</span>
|
|
|
</button>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">code</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">code</span>
|
|
|
</button>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">format_list_bulleted</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">format_list_bulleted</span>
|
|
|
</button>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">format_list_numbered</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">format_list_numbered</span>
|
|
|
</button>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">block</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">block</span>
|
|
|
</button>
|
|
|
<button type="button" className="btn btn-toolbar-button">
|
|
|
- <span className="material-icons-outlined fs-5">checklist</span>
|
|
|
+ <span className="material-symbols-outlined fs-5">checklist</span>
|
|
|
</button>
|
|
|
</div>
|
|
|
</Collapse>
|