UNPKG

retabler

Version:

React Component library via Tabler

9 lines (8 loc) 303 B
import React from "react"; export interface CardImageProps extends React.ImgHTMLAttributes<HTMLElement> { className?: string; top?: boolean; bottom?: boolean; } declare const CardImage: ({ className, top, bottom, ...props }: CardImageProps) => JSX.Element; export default CardImage;