UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

18 lines (17 loc) 343 B
import { jsx } from "react/jsx-runtime"; import { Chip } from "@mui/material"; export default function Status(props) { return /* @__PURE__ */ jsx( Chip, { size: "small", variant: "filled", ...props, sx: { ...props.sx || {}, height: 20, textTransform: "capitalize" } } ); }