12 lines
479 B
Python
12 lines
479 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from appearance.classes import Icon
|
|
|
|
icon_document_content = Icon(driver_name='fontawesome', symbol='font')
|
|
icon_document_ocr_download = Icon(driver_name='fontawesome', symbol='file-alt')
|
|
icon_document_ocr_errors_list = Icon(
|
|
driver_name='fontawesome', symbol='file-alt'
|
|
)
|
|
icon_document_type_submit = Icon(driver_name='fontawesome', symbol='font')
|
|
icon_entry_list = Icon(driver_name='fontawesome', symbol='file-alt')
|