mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-04 09:15:58 +02:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import styled from "styled-components"
|
|
|
|
export const RoleWrapper = styled.span<{ color: string }>`
|
|
display: inline-block;
|
|
font-weight: 400 !important;
|
|
color: ${(props) => props.color};
|
|
border: 2px solid ${(props) => props.color};
|
|
border-radius: 40px;
|
|
margin: 2px 0;
|
|
padding: 3px 12px;
|
|
`
|