Files
nym/explorer-nextjs/app/components/ComponentError.tsx
T
2024-07-18 12:44:54 +01:00

13 lines
314 B
TypeScript

import { Typography } from "@mui/material";
import * as React from "react";
export const ComponentError = ({ text }: { text: string }) => (
<Typography
sx={{ marginTop: 2, color: "primary.main", fontSize: 10 }}
variant="body1"
data-testid="delegation-total-amount"
>
{text}
</Typography>
);