Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
19 lines
545 B
Plaintext
19 lines
545 B
Plaintext
import React from 'react';
|
|
import './index.scss';
|
|
export type Props = {
|
|
actions?: React.ReactNode;
|
|
buttonAriaLabel?: string;
|
|
href?: string;
|
|
id?: string;
|
|
/**
|
|
* @deprecated
|
|
* This prop is deprecated and will be removed in the next major version.
|
|
* Components now import their own `Link` directly from `next/link`.
|
|
*/
|
|
Link?: React.ElementType;
|
|
onClick?: () => void;
|
|
title: string;
|
|
titleAs?: React.ElementType;
|
|
};
|
|
export declare const Card: React.FC<Props>;
|
|
//# sourceMappingURL=index.d.ts.map |