UNPKG

@while-and-for/tremor-react

Version:

The React library to build dashboards faster.

8 lines (7 loc) 306 B
import React from "react"; import { Color } from "../../../lib/inputTypes"; export interface TextProps extends React.HTMLAttributes<HTMLParagraphElement> { color?: Color; } declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLParagraphElement>>; export default Text;