import React, { AnchorHTMLAttributes, FC, ElementType } from 'react';
import classNames from 'classnames';
export interface CardTagProps extends AnchorHTMLAttributes {
/** Utilizzarlo in caso di utilizzo di componenti personalizzati */
tag?: ElementType;
/** Classi aggiuntive da usare per il componente CardTag*/
className?: string;
testId?: string;
}
export const CardTag: FC = ({ className, tag = 'a', testId, ...attributes }) => {
const Tag = tag;
const classes = classNames(className, 'card-tag');
return ;
};