Typography
Slot primitive
Types primitive
Demo
Semantic and styled typography components.
H1
H2
H3
H4
P
BlockQuote
Code
Lead
Large
Small
Muted
Installation
npx @react-native-reusables/cli@latest add typography
Copy/paste the following code to ~/components/ui/typography.tsx
:
import * as Slot from '@rn-primitives/slot';import * as React from 'react';import { Platform, Text as RNText } from 'react-native';import { cn } from '~/lib/utils';
type TypographyProps = React.ComponentProps<typeof RNText> & { ref?: React.RefObject<RNText>; asChild?: boolean;};
function H1({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component role='heading' aria-level='1' className={cn( 'web:scroll-m-20 text-4xl text-foreground font-extrabold tracking-tight lg:text-5xl web:select-text', className )} {...props} /> );}
function H2({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component role='heading' aria-level='2' className={cn( 'web:scroll-m-20 border-b border-border pb-2 text-3xl text-foreground font-semibold tracking-tight first:mt-0 web:select-text', className )} {...props} /> );}
function H3({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component role='heading' aria-level='3' className={cn( 'web:scroll-m-20 text-2xl text-foreground font-semibold tracking-tight web:select-text', className )} {...props} /> );}
function H4({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component role='heading' aria-level='4' className={cn( 'web:scroll-m-20 text-xl text-foreground font-semibold tracking-tight web:select-text', className )} {...props} /> );}
function P({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component className={cn('text-base text-foreground web:select-text', className)} {...props} /> );}
function BlockQuote({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component // @ts-ignore - role of blockquote renders blockquote element on the web role={Platform.OS === 'web' ? 'blockquote' : undefined} className={cn( 'mt-6 native:mt-4 border-l-2 border-border pl-6 native:pl-3 text-base text-foreground italic web:select-text', className )} {...props} /> );}
function Code({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component // @ts-ignore - role of code renders code element on the web role={Platform.OS === 'web' ? 'code' : undefined} className={cn( 'relative rounded-md bg-muted px-[0.3rem] py-[0.2rem] text-sm text-foreground font-semibold web:select-text', className )} {...props} /> );}
function Lead({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component className={cn('text-xl text-muted-foreground web:select-text', className)} {...props} /> );}
function Large({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component className={cn('text-xl text-foreground font-semibold web:select-text', className)} {...props} /> );}
function Small({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component className={cn('text-sm text-foreground font-medium leading-none web:select-text', className)} {...props} /> );}
function Muted({ className, asChild = false, ...props }: TypographyProps) { const Component = asChild ? Slot.Text : RNText; return ( <Component className={cn('text-sm text-muted-foreground web:select-text', className)} {...props} /> );}
export { BlockQuote, Code, H1, H2, H3, H4, Large, Lead, Muted, P, Small };
Props and usage
Accepts all the props of the React-Native Text
component and is used the same way.