8 lines
298 B
Python
8 lines
298 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from appearance.classes import Icon
|
|
|
|
icon_about = Icon(driver_name='fontawesome', symbol='info')
|
|
icon_check_version = Icon(driver_name='fontawesome', symbol='sync')
|
|
icon_current_user_details = Icon(driver_name='fontawesome', symbol='user')
|