@heroui/card
Version:
Card is a container for text, photos, and actions in the context of a single subject.
15 lines (12 loc) • 442 B
text/typescript
import * as _heroui_system from '@heroui/system';
import { UseCardProps } from './use-card.mjs';
import 'react';
import '@react-types/shared';
import '@heroui/theme';
import '@heroui/ripple';
import '@react-aria/interactions';
import '@heroui/react-utils';
interface CardProps extends UseCardProps {
}
declare const Card: _heroui_system.InternalForwardRefRenderFunction<"div", CardProps, never>;
export { type CardProps, Card as default };