1
0
Fork 0
mirror of https://github.com/myned/watcher.git synced 2024-11-01 20:22:38 +00:00
watcher/tools/components.py

13 lines
322 B
Python
Raw Normal View History

2022-07-05 22:19:59 +00:00
import hikari
from miru.ext import nav
class Back(nav.PrevButton):
def __init__(self):
super().__init__(style=hikari.ButtonStyle.SECONDARY, label="", emoji=None)
class Forward(nav.NextButton):
def __init__(self):
super().__init__(style=hikari.ButtonStyle.SECONDARY, label="", emoji=None)