add mojang endpoint status page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m13s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m13s
This commit is contained in:
@ -1,7 +1,11 @@
|
||||
import { cn } from "@/common/utils";
|
||||
|
||||
export function Card({
|
||||
children,
|
||||
className,
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
className?: string;
|
||||
}>): JSX.Element {
|
||||
return <div className="bg-secondary rounded-lg p-3 w-max xs:w-fit">{children}</div>;
|
||||
return <div className={cn("bg-secondary rounded-lg p-3", className)}>{children}</div>;
|
||||
}
|
||||
|
Reference in New Issue
Block a user