lincd-design-elems
Version:
20 lines (19 loc) • 538 B
TypeScript
import React from 'react';
interface CardProps extends React.PropsWithChildren {
imageSrc?: string;
imageStyle?: React.CSSProperties;
imageAlt?: string;
header?: any;
content?: any;
footer?: any;
}
interface CardHeaderProps extends React.PropsWithChildren {
className?: string;
style?: any;
}
export declare const Card: {
(props: CardProps): React.JSX.Element;
Content: (props: React.PropsWithChildren) => React.JSX.Element;
Header: (props: CardHeaderProps) => React.JSX.Element;
};
export {};