GoScrobble/web/node_modules/reactstrap/es/CardGroup.d.ts

12 lines
316 B
TypeScript
Raw Permalink Normal View History

2022-04-25 02:47:15 +00:00
import * as React from 'react';
import { CSSModule } from './index';
export interface CardGroupProps extends React.HTMLAttributes<HTMLElement> {
[key: string]: any;
tag?: React.ElementType;
cssModule?: CSSModule;
}
declare class CardGroup extends React.Component<CardGroupProps> {}
export default CardGroup;