14 lines
495 B
Python
14 lines
495 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from appearance.classes import Icon
|
|
|
|
icon_smart_link_condition_create = Icon(
|
|
driver_name='fontawesome', symbol='plus'
|
|
)
|
|
icon_smart_link_condition = Icon(driver_name='fontawesome', symbol='code')
|
|
icon_smart_link_create = Icon(driver_name='fontawesome', symbol='plus')
|
|
icon_smart_link_instances_for_document = Icon(
|
|
driver_name='fontawesome', symbol='link'
|
|
)
|
|
icon_smart_link_setup = Icon(driver_name='fontawesome', symbol='link')
|