@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
11 lines (10 loc) • 318 B
TypeScript
type Props = {
children: React.ReactNode;
size?: "s" | "m";
isActive?: boolean;
onClick: () => void;
append?: React.ReactNode;
"data-testid"?: string;
};
export declare const VuiChip: ({ children, size, isActive, append, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};