This commit is contained in:
parent
9c12845306
commit
b2e6ac610f
6 changed files with 72 additions and 16 deletions
|
|
@ -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>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue