nowt-ui-library
Version:
Nothing unnecessary. Just clean UI.A lightweight and customizable UI component library built for speed and simplicity for React and Next.js.
28 lines (27 loc) • 739 B
TypeScript
import React from 'react';
export type StatusType = 'success' | 'warning' | 'danger' | 'neutral';
export type ThemeType = 'light' | 'dark';
interface CleanCardUltraV2Props {
title: string;
subtitle?: string;
description?: string;
image?: string;
avatar?: string;
badge?: string;
tag?: string;
tags?: string[];
status?: StatusType;
progress?: number;
theme?: ThemeType;
footer?: React.ReactNode;
actions?: React.ReactNode;
width?: number | string;
hlight?: boolean | number;
responsive?: boolean;
onClick?: () => void;
loading?: boolean;
className?: string;
height?: number | string;
}
declare const Card: React.FC<CleanCardUltraV2Props>;
export default Card;