ds-smart-ui
Version:
Smart UI v1.0.5 — A production-ready React component library by PT Praisindo Teknologi. Covers inputs, navigation, data display, feedback, and layout with a unified design system, semantic Typography tokens, and full Storybook documentation.
13 lines (12 loc) • 395 B
TypeScript
import { CSSProperties, HTMLAttributes } from 'react';
export interface CardProps extends HTMLAttributes<HTMLDivElement> {
children: React.ReactNode;
className?: string;
elevation?: 0 | 1 | 2 | 3 | 4;
rounded?: "none" | "sm" | "md" | "lg" | "xl";
outlined?: boolean;
style?: CSSProperties;
id?: string;
}
declare const Card: React.FC<CardProps>;
export default Card;