mirror of
https://github.com/logos-messaging/logos-delivery-frontend.git
synced 2026-05-19 12:09:24 +00:00
14 lines
329 B
TypeScript
14 lines
329 B
TypeScript
type StatusProps = {
|
|
text: string;
|
|
mark: string;
|
|
};
|
|
|
|
export const Status: React.FunctionComponent<StatusProps> = (props) => (
|
|
<p className="text-s">
|
|
{props.text}:{" "}
|
|
<span className="underline underline-offset-3 decoration-4 decoration-blue-400 dark:decoration-blue-600">
|
|
{props.mark}
|
|
</span>
|
|
</p>
|
|
);
|