@abgov/react-components
Version:
Government of Alberta - UI components for React
14 lines (13 loc) • 393 B
TypeScript
import { JSX } from 'react';
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-card-content": React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabCardContentProps {
children?: React.ReactNode;
}
export declare function GoabCardContent({ children }: GoabCardContentProps): JSX.Element;
export default GoabCardContent;