Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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