mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-04-02 22:30:25 +00:00
Make it possible to use SVG icons in Draftail
This commit is contained in:
parent
5331027ea2
commit
4264211f0e
1 changed files with 2 additions and 1 deletions
|
|
@ -16,7 +16,8 @@ import ModalWorkflowSource from './sources/ModalWorkflowSource';
|
|||
import registry from './registry';
|
||||
|
||||
const wrapWagtailIcon = type => {
|
||||
if (type.icon) {
|
||||
const isIconFont = type.icon && typeof type.icon === 'string';
|
||||
if (isIconFont) {
|
||||
return Object.assign(type, {
|
||||
icon: <Icon name={type.icon} />,
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue