@abgov/react-components
Version:
Government of Alberta - UI components for React
19 lines (18 loc) • 460 B
TypeScript
import { JSX } from 'react';
interface WCProps {
src: string;
height: string;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-card-image": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabCardImageProps {
src: string;
height: string;
}
export declare function GoabCardImage({ src, height }: GoabCardImageProps): JSX.Element;
export default GoabCardImage;