9 lines
261 B
Python
9 lines
261 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from appearance.classes import Icon
|
|
|
|
icon_checkout_info = Icon(driver_name='fontawesome', symbol='shopping-cart')
|
|
icon_dashboard_checkouts = Icon(
|
|
driver_name='fontawesome', symbol='shopping-cart'
|
|
)
|