My personal website
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 9 lines 214 B view raw
1import { ReactNode } from 'react'; 2 3export type ParagraphSize = 'sm' | 'base' | 'md' | 'lg' | 'xl' | '2xl'; 4 5export interface ParagraphProps { 6 children: ReactNode; 7 size?: ParagraphSize; 8 className?: string; 9}