@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
14 lines (13 loc) • 483 B
TypeScript
import { ReactNode } from "react";
import { ICON_COLOR, ICON_SIZE, ICON_TYPE } from "./types";
type Props = {
children: ReactNode;
color?: (typeof ICON_COLOR)[number];
className?: string;
size?: (typeof ICON_SIZE)[number];
inline?: boolean;
type?: (typeof ICON_TYPE)[number];
isEnclosed?: boolean;
};
export declare const VuiIcon: ({ children, size, color, className, inline, type, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};