import { View } from "react-native" import tw from "twrnc" import { SansSerifText } from "./sans-serif-text" import { type Showcase, Section } from "../showcase" function SansSerifTextShowcase() { return (
Small sans-serif text Base sans-serif text Extra large sans-serif text 3XL sans-serif text
Light weight Normal weight Medium weight Semibold weight Bold weight
) } export const sansSerifTextShowcase: Showcase = { title: "SansSerifText", component: SansSerifTextShowcase, }