您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

11 行
395 B

  1. import { Typography } from "@mui/material"
  2. export function getStatusTag({ color = "#000", textColor = "#FFF", text = "" }) {
  3. return (
  4. <div style={{ borderRadius: "25px", "background": color, "color": textColor, "padding": "5px 10px 5px 10px", margin: "6px 4px 6px 4px" }}>
  5. <Typography variant="h6">
  6. {text}
  7. </Typography>
  8. </div>
  9. )
  10. }