@fdmg/fd-read-history
Version:
FD-themed read history
19 lines (18 loc) • 474 B
TypeScript
import { CardTypes } from "@fdmg/fd-card";
interface NewsItem {
uuid: string;
dateTime: string;
isRead?: boolean;
target?: string;
title: string;
url: string;
}
export interface Props {
cardStyle: CardTypes;
className?: string;
news: NewsItem[];
title?: string;
}
export default function ReadHistory(props: Props): JSX.Element;
export declare const ReadHistoryStyle: import("styled-components").FlattenSimpleInterpolation;
export {};