@coreui/react
Version:
UI Components Library for React.js
13 lines (12 loc) • 481 B
TypeScript
import React, { AnchorHTMLAttributes } from 'react';
export interface CCardLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
/**
* A string of all className you want applied to the base component.
*/
className?: string;
/**
* The href attribute specifies the URL of the page the link goes to.
*/
href?: string;
}
export declare const CCardLink: React.ForwardRefExoticComponent<CCardLinkProps & React.RefAttributes<HTMLAnchorElement>>;