Skip to content

Commit f9212bd

Browse files
committed
Enable card props on catalog tile
1 parent d0ce1fd commit f9212bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/module/src/components/CatalogTile/CatalogTile.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import * as React from 'react';
2-
import { Card, CardHeader, CardTitle, CardBody, CardFooter } from '@patternfly/react-core';
2+
import { Card, CardHeader, CardTitle, CardBody, CardFooter, CardProps } from '@patternfly/react-core';
33
import { css } from '@patternfly/react-styles';
44
import { getUniqueId } from '@patternfly/react-core';
55

6-
export interface CatalogTileProps extends Omit<React.HTMLProps<HTMLElement>, 'title'> {
6+
export interface CatalogTileProps extends Omit<CardProps, 'title'> {
77
/** Id */
88
id?: any;
99
/** Additional css classes */

0 commit comments

Comments
 (0)