@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
14 lines (10 loc) • 556 B
TypeScript
import { VariantProps } from 'class-variance-authority';
import * as class_variance_authority_types from 'class-variance-authority/types';
declare const toggleVariants: (props?: {
variant?: "default" | "outline";
size?: "default" | "sm" | "lg";
} & class_variance_authority_types.ClassProp) => string;
type ToggleVariantsProps = VariantProps<typeof toggleVariants>;
type ToggleVariant = NonNullable<ToggleVariantsProps["variant"]>;
type ToggleSize = NonNullable<ToggleVariantsProps["size"]>;
export type { ToggleSize as T, ToggleVariant as a };