Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
fix(Card): support custom props
Browse files Browse the repository at this point in the history
  • Loading branch information
Cecilia Woodward committed Aug 21, 2021
1 parent 12e0df0 commit 9f96103
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions stories/Card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.card {
@include loading(false, '> .content');

box-sizing: border-box;
position: relative;
border-radius: $border-radius;
background-color: $secondary;
Expand Down
1 change: 1 addition & 0 deletions stories/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Grid } from './Grid';
import { Spinner } from './Spinner';

export interface CardProps {
[key: string]: any;
children?: ReactNode;
className?: string;
layout?: Layout;
Expand Down

0 comments on commit 9f96103

Please sign in to comment.