Skip to content

Commit

Permalink
feat(SelectableCard): interface update
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinsawicki committed Dec 6, 2024
1 parent 562c31f commit 97fd961
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import * as React from 'react';

import { ISelectableCardCoreProps } from '../../types';

export interface IGallerySelectableCardProps extends ISelectableCardCoreProps {
export interface IGallerySelectableCardProps
extends Omit<ISelectableCardCoreProps, 'children'> {
/**
* The label of the card
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as React from 'react';
import { ISelectableCardCoreProps } from '../../types';

export interface IThumbnailSelectableCardProps
extends ISelectableCardCoreProps {
extends Omit<ISelectableCardCoreProps, 'children'> {
/**
* The label of the card
*/
Expand Down

0 comments on commit 97fd961

Please sign in to comment.