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
2022-07-05 17:19:59 -05:00

12 lines
322 B
Python

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)