diff --git a/app/src/components/MonoText.tsx b/app/src/components/MonoText.tsx new file mode 100644 index 0000000..eb1c413 --- /dev/null +++ b/app/src/components/MonoText.tsx @@ -0,0 +1,15 @@ +import type { ComponentProps, JSX } from "react"; +import { Typography } from "heroui-native"; + +type MonoTextProps = ComponentProps; + +export function MonoText({ className, style, ...props }: MonoTextProps): JSX.Element { + return ( + + ); +} diff --git a/app/src/lib/typography.ts b/app/src/lib/typography.ts new file mode 100644 index 0000000..b0d0fed --- /dev/null +++ b/app/src/lib/typography.ts @@ -0,0 +1,2 @@ +export const MICRO_LABEL_CLASS = + "text-[11px] font-semibold uppercase tracking-wider text-subtle";