aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/ui/PageTitle.tsx
blob: 28afa4081bb42d30a9c03647df0a6abaed230276 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Text } from "@/components/ui/Text";
import { cx } from "class-variance-authority";

export default function PageTitle({
  title,
  className,
}: {
  title: string;
  className?: string;
}) {
  return (
    <Text className={cx("p-4 text-4xl font-bold text-foreground", className)}>
      {title}
    </Text>
  );
}