@vectara/vectara-ui
Version:
Vectara's design system, codified as a React and Sass component library
13 lines (12 loc) • 400 B
TypeScript
type Props = {
title: string;
label: string;
badge?: string;
helpUrl?: string;
description?: React.ReactNode;
isEnabled?: boolean;
onToggle?: () => void;
children?: React.ReactNode;
};
export declare const VuiSetting: ({ title, label, badge, helpUrl, description, isEnabled, onToggle, children, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};