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

11 行
320B

  1. import { Chip, ChipProps } from "@mui/material";
  2. export type RequireChipProps = { require?: boolean } & ChipProps;
  3. export default function RequireChip({ require, ...others }: RequireChipProps) {
  4. if (require === false) {
  5. return null;
  6. }
  7. return <Chip size="small" label="必須" color="error" {...others} />;
  8. }