ivt
Version:
Ivt Components Library
13 lines (10 loc) • 799 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
import { VariantProps } from 'class-variance-authority';
import * as React from 'react';
import { toggleVariants } from '../toggle/index.js';
import 'class-variance-authority/types';
import '@radix-ui/react-toggle';
declare function ToggleGroup({ className, variant, size, children, ...props }: React.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
declare function ToggleGroupItem({ className, children, variant, size, ...props }: React.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
export { ToggleGroup, ToggleGroupItem };