Skip to content

Commit

Permalink
Enable card props on catalog tile
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiehuff committed Jun 20, 2024
1 parent 4f787eb commit 2ad81c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/module/src/components/CatalogTile/CatalogTile.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as React from 'react';
import { Card, CardHeader, CardTitle, CardBody, CardFooter } from '@patternfly/react-core';
import { Card, CardHeader, CardTitle, CardBody, CardFooter, CardProps } from '@patternfly/react-core';
import { css } from '@patternfly/react-styles';
import { getUniqueId } from '@patternfly/react-core';

export interface CatalogTileProps extends Omit<React.HTMLProps<HTMLElement>, 'title'> {
export interface CatalogTileProps extends Omit<CardProps, 'title'> {
/** Id */
id?: any;
/** Additional css classes */
Expand Down

0 comments on commit 2ad81c4

Please sign in to comment.