UNPKG

pouncejs

Version:

A collection of UI components from Panther labs

12 lines (11 loc) 416 B
/// <reference types="react" /> export declare type TextProps = React.ComponentProps<typeof Text>; /** * Extends <a href="/#/Box">Box</a> * * Responsive typographic component. Anywhere you want to add some text that doesn't constitute a * heading or a title, this component is what you need. * * */ declare const Text: import("react").FC<import("../../system").PounceComponentProps<"p">>; export default Text;