dgz-ui
Version:
Custom ui library using React.js, Shadcn/ui, TailwindCSS, Typescript
31 lines • 1.44 kB
TypeScript
import * as React from 'react';
/**
* CardProps - Native div attributes for the Card container.
*/
export type CardProps = React.HTMLAttributes<HTMLDivElement>;
/**
* Card - A surface component to group related content.
*/
declare const Card: React.ForwardRefExoticComponent<CardProps & React.RefAttributes<HTMLDivElement>>;
/**
* CardHeader - Top section typically containing the title and actions.
*/
declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
/**
* CardTitle - Title area inside the header.
*/
declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
/**
* CardDescription - Secondary text under the title.
*/
declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLDivElement>>;
/**
* CardContent - Main content area of the card.
*/
declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
/**
* CardFooter - Bottom area for actions or summary.
*/
declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent, };
//# sourceMappingURL=card.d.ts.map