import React, { forwardRef } from 'react' import classnames from 'classnames' import type { HTMLAttributes, ReactNode } from 'react' export interface ImportCardProps extends Omit, 'className'> { children: ReactNode className?: string variant?: 'default' | 'controls' } export const ImportCard = forwardRef(({ children, className, variant = 'default', ...props }, ref) =>
{children}
) ImportCard.displayName = 'ImportCard'