import { View } from "react-native" import tw from "twrnc" import { MonospaceText } from "./monospace-text" import { type Showcase, Section } from "../showcase" function MonospaceTextShowcase() { return (
Small monospace text Base monospace text Extra large monospace text 3XL monospace text
{"const x = 42;"} {"console.log(x);"}
) } export const monospaceTextShowcase: Showcase = { title: "MonospaceText", component: MonospaceTextShowcase, }