UNPKG

gestalt

Version:

A set of React UI components which enforce Pinterest's design language

9 lines (8 loc) 292 B
import { ReactElement } from 'react'; type Size = '100' | '200' | '300' | '400' | '500' | '600'; type Props = { size: Size | null | undefined; text: string | ReactElement; }; export default function ListText({ size, text }: Props): import("react/jsx-runtime").JSX.Element; export {};