Make it possible to use SVG icons in Draftail

This commit is contained in:
Thibaud Colas 2018-01-30 16:23:00 +02:00 committed by Matt Westcott
parent 5331027ea2
commit 4264211f0e

View file

@ -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} />,
});