import React from 'react'; import { CardLink as CardLinkPrimitive, CardLinkProps as CardLinkPropsPrimitive } from '@modulz/primitives'; export type CardLinkProps = CardLinkPropsPrimitive type ExtractRefType = TypesThatMayContainReactRef extends {ref?: React.Ref} ? T : unknown; type PrimitiveRefType = ExtractRefType export const CardLink = React.forwardRef((props, ref) => { return ( ); });