UNPKG

@vectara/vectara-ui

Version:

Vectara's design system, codified as a React and Sass component library

10 lines (9 loc) 292 B
import { ReactNode } from "react"; import { TextColor } from "./types"; type Props = { children?: ReactNode; color: TextColor; className?: string; }; export declare const VuiTextColor: ({ children, color, className }: Props) => import("react/jsx-runtime").JSX.Element; export {};