@adventera/vectara-ui
Version:
Vectara's design system, codified as a React component library
13 lines (12 loc) • 446 B
TypeScript
import { ReactNode } from "react";
declare const SIZE: readonly ["xs", "s", "m", "l"];
declare const TEXT_ALIGN: readonly ["left", "center", "right"];
type Props = {
className?: string;
id?: string;
children?: ReactNode;
size?: (typeof SIZE)[number];
align?: (typeof TEXT_ALIGN)[number];
};
export declare const VuiText: ({ children, className, id, size, align }: Props) => import("react/jsx-runtime").JSX.Element;
export {};