import React, { AnchorHTMLAttributes, forwardRef } from 'react'
import PropTypes from 'prop-types'
import classNames from 'classnames'
import { CLink } from '../link/CLink'
export interface CAlertLinkProps extends AnchorHTMLAttributes {
/**
* A string of all className you want applied to the base component.
*/
className?: string
}
export const CAlertLink = forwardRef(
({ children, className, ...rest }, ref) => {
return (
{children}
)
}
)
CAlertLink.propTypes = {
children: PropTypes.node,
className: PropTypes.string,
}
CAlertLink.displayName = 'CAlertLink'