@krowdy-ui/views
Version:
React components that implement Google's Material Design.
30 lines (23 loc) • 607 B
TypeScript
import { KrowdyCardProps } from "@krowdy-ui/core/Card";
interface Classes {
actions: string;
containerTitle:string;
content: string;
header: string;
root : string;
title: string;
}
export type RankingGroupProps = KrowdyCardProps & {
classes?: Classes;
active?: boolean;
title?: string;
action?: React.ReactNode;
leftActionFooter?: React.ReactNode;
rightActionFooter?: React.ReactNode;
scroll?: boolean;
subHeader?: React.ReactNode;
shadow?: boolean;
subtitle?: string;
};
declare const RankingGroup: React.ComponentType<RankingGroupProps>;
export default RankingGroup;