amy 2024-09-10 02:13:23 +03:30
parent 9c12845306
commit b2e6ac610f
6 changed files with 72 additions and 16 deletions

View file

@ -1,6 +1,14 @@
import "./comps.css"
// warning: this IS horrible code. its a joke. DO NOT try this at home because
// your local senior programmer CAN and WILL hunt you down
// you have been warned.
export default function AdvancedBr({count}:{count:number}) {
return new Array(count).fill(null).map(_=>(<br/>))
export function AdvancedBr({ count }: { count: number }) {
return new Array(count).fill(null).map(_ => (<br />))
}
export function SingularOomfie({ name, url, discordid }: { name: string, url: string, discordid: string }) {
return <a href={url}><img class="tooltip" style={{
"max-width": "3em",
"border-radius": "30%"
}} src={`https://dp.nea.moe/avatar/${discordid}.png`} alt="LMAO IMAGINE BEING BLIND" /> </a>
}