UNPKG

ai-react-ui

Version:

An AI-friendly React UI component library

12 lines (11 loc) 290 B
import React from "react"; import { Size, Weight } from "../theme/types"; interface TextProps { children: React.ReactNode; size?: Size; weight?: Weight; color?: string; style?: React.CSSProperties; } export declare const Text: React.FC<TextProps>; export {};