mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 09:15:58 +02:00
13 lines
293 B
TypeScript
13 lines
293 B
TypeScript
import React, { PropsWithChildren } from "react"
|
|
import * as SC from "./styles"
|
|
|
|
function DiscordButton({ children }: PropsWithChildren<{}>) {
|
|
return (
|
|
<SC.DiscordButtonWrapper>
|
|
<SC.StyledDiscordLogo /> {children}
|
|
</SC.DiscordButtonWrapper>
|
|
)
|
|
}
|
|
|
|
export default DiscordButton
|