11 lines
397 B
Python
11 lines
397 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from appearance.classes import Icon
|
|
|
|
icon_document_preview = Icon(driver_name='fontawesome', symbol='eye')
|
|
icon_document_properties = Icon(driver_name='fontawesome', symbol='info')
|
|
icon_document_version_list = Icon(
|
|
driver_name='fontawesome', symbol='code-branch'
|
|
)
|
|
icon_document_pages = Icon(driver_name='fontawesome', symbol='copy')
|