mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-08 07:56:12 +02:00
ui(faq): make roles badge-like using MDX, tweak list of roles
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import React, { FC } from "react"
|
||||
import * as SC from "./styles"
|
||||
|
||||
interface IRoleProps {
|
||||
color: string
|
||||
}
|
||||
|
||||
export const Role: FC<IRoleProps> = ({ children, color, ...props }) => {
|
||||
return (
|
||||
<SC.RoleWrapper {...props} color={color}>
|
||||
{children}
|
||||
</SC.RoleWrapper>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user