FontAwesome 5 extension for superqt font icons
Project Links
Meta
Author: Talley Lambert
Requires Python: >=3.6
Classifiers
Development Status
- 4 - Beta
License
- OSI Approved :: MIT License
Natural Language
- English
Programming Language
- Python :: 3
- Python :: 3.6
- Python :: 3.7
- Python :: 3.8
- Python :: 3.9
fonticon-fontawesome5
FontAwesome 5 extension for superqt font icons
pip install superqt fonticon-fontawesome5
from fonticon_fa5 import FA5S
from qtpy.QtCore import QSize
from qtpy.QtWidgets import QApplication, QPushButton
from superqt.fonticon import icon, pulse
app = QApplication([])
btn2 = QPushButton()
btn2.setIcon(icon(FA5S.spinner, animation=pulse(btn2)))
btn2.setIconSize(QSize(225, 225))
btn2.show()
app.exec_()