Make it possible to use SVG icons in Draftail

pull/4261/head
Thibaud Colas 2018-01-30 16:23:00 +02:00 zatwierdzone przez Matt Westcott
rodzic 9760e8f520
commit e272aba222
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

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