react-chrono-multicard
Version:
A Modern Timeline component for React with multiple card entries
22 lines (21 loc) • 616 B
TypeScript
import React from 'react';
import { Theme } from '../../../models/Theme';
interface Title {
active?: boolean;
color?: string;
dir?: string;
fontSize?: string;
theme?: Theme;
title?: string;
url?: string;
}
interface Content {
color?: string;
content?: string;
dir?: string;
fontSize?: string;
theme?: Theme;
}
declare const MemoTitle: React.MemoExoticComponent<({ title, url, theme, color, dir, active, fontSize }: Title) => JSX.Element | null>;
declare const MemoSubTitle: React.NamedExoticComponent<Content>;
export { MemoTitle, MemoSubTitle };