@ntragas/pouncejstest
Version:
A collection of UI components from Panther labs
13 lines (12 loc) • 440 B
TypeScript
import React from 'react';
import { PounceComponentProps } from '../../system';
export declare type TextProps<T extends React.ElementType = any> = PounceComponentProps<T>;
/**
* 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: React.FC<TextProps>;
export default Text;