@itgold/grandbazar-ui-kit
Version:
Grandbazar.io UI component library: React, Typescript, Tailwind, Rollup, Storybook, Jest.
8 lines (7 loc) • 313 B
TypeScript
/// <reference types="react" />
import { TCardProps } from '@/components/card/Card';
export type TCardLinkProps = TCardProps & {
href: string;
innerRef?: React.Ref<HTMLAnchorElement>;
};
export declare function CardLink({ href, children, innerRef, isLink, ...props }: TCardLinkProps): React.ReactElement;