import * as stylex from "@stylexjs/stylex"; import { Flex } from "@/components/flex"; import { Text } from "@/components/typography/text"; import { verticalSpace } from "../../components/theme/semantic-spacing.stylex"; const styles = stylex.create({ wrapper: { paddingBottom: verticalSpace["3xl"], paddingTop: verticalSpace["3xl"], }, }); export function TextExample() { return ( Title text Sans serif text (default) Serif text Monospace text ); }