Add reminder creator

This commit is contained in:
jude
2023-10-30 21:24:05 +00:00
parent 0f259824fc
commit e36d2610da
14 changed files with 237 additions and 3 deletions

View File

@ -0,0 +1,24 @@
export const Footer = ({ footer, icon }) => (
<div class="embed-footer-box">
<p class="image is-20x20 customizable">
<a>
<img
class="is-rounded embed_footer_url"
src={icon || "/static/img/bg.webp"}
alt="Footer profile-like image"
></img>
</a>
</p>
<label class="is-sr-only" for="embedFooter">
Embed Footer text
</label>
<textarea
class="discord-embed-footer message-input autoresize "
placeholder="Embed Footer..."
maxlength={2048}
name="embed_footer"
rows={1}
value={footer}
></textarea>
</div>
);