caverav / auditforge

Avoid using wildcard imports JS-C1003
Anti-pattern
Minor
1 occurrence in this check
Explicitly import the specific method needed
 1import { Slot } from '@radix-ui/react-slot';
 2import { cva, type VariantProps } from 'class-variance-authority';
 3import * as React from 'react'; 4
 5import { cn } from '@/lib/utils';
 6