Skip to content

Commit

Permalink
fix: add to stories
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Oct 12, 2023
1 parent 3a23c93 commit 08ae356
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stories/Card.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Card, CardProps, TabbedCard } from '../src/card';
import { Tabs } from '../src/tabs';
import { Button } from '../src/button';
import InfoTip from './components/InfoTip';
import { Flex, Heading, Provider, View } from '../src';
import { Counter, Flex, Heading, Provider, View } from '../src';

const { TabPane } = Tabs;

Expand Down Expand Up @@ -138,6 +138,7 @@ const GalleryCards = (props: { variant: CardProps['variant'] }) => {
</Card>
<Card
title="Collapsible Title"
titleExtra={<Counter variant="light">5</Counter>}
{...props}
style={cardStyle}
extra={
Expand All @@ -153,6 +154,7 @@ const GalleryCards = (props: { variant: CardProps['variant'] }) => {
<Card
title="Collapsible Title"
subTitle="Subtext area"
titleExtra={<Counter variant="light">5</Counter>}
style={cardStyle}
extra={
<Button variant="default" size={buttonSize}>
Expand Down

0 comments on commit 08ae356

Please sign in to comment.