mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 23:44:11 +02:00
15 lines
233 B
TypeScript
15 lines
233 B
TypeScript
import React from "react"
|
|
|
|
function DiscordButton({
|
|
lined = false,
|
|
children,
|
|
}: React.PropsWithChildren<{ lined: boolean }>) {
|
|
return (
|
|
<button>
|
|
<div>{children}</div>
|
|
</button>
|
|
)
|
|
}
|
|
|
|
export default DiscordButton
|