You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
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. }