test-nut-ui
Version:
<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>
15 lines (14 loc) • 404 B
TypeScript
/// <reference types="react" />
import { BasicComponent } from '../../utils/typings';
export interface VotePageRulesCardProps extends BasicComponent {
visible: boolean;
title: string;
content: string;
bgImage: string;
colseIcon: string;
onClick: () => void;
}
export declare const VotePageRulesCard: {
(props: VotePageRulesCardProps): JSX.Element;
displayName: string;
};