Spaces:
No application file
No application file
File size: 248 Bytes
6755a2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from .attributes import AttriributeIsText
from . import AttrRegister
__all__ = ["Style"]
@AttrRegister.register
class Style(AttriributeIsText):
name = "style"
def __init__(self, name: str = None) -> None:
super().__init__(name)
|